1)列表list1的长度是多少 4
2)列表list1中有几个元素 4
3)list1[1] 的数据类型是什么 int
4)list1[3]的数据类型是什么 list
5)list1[3][4] 的值是什么 [8,9,10,12]
6)执行list1[3][4].append([5, 6])后,列表list1的内容是什么
[1, 4, 5, [1, 3, 5, 6, [8, 9, 10, 12, [5, 6]]]]
7)list1[-1][-1][-2]的值是什么 12
8)list1[-2]的值是什么 5
9)len(list1[-1]) 的值是什么 5
10)len(list1[-1][-1])的值是什么 5
11)list1[-1][1:3] 的值是什么 [3, 5]
12)list1[-1][-1][1:-2]的值是什么 [9, 10]
5. list1=[1,4,5,[1,3,5,6,[8,9,10,12]]]
# 倒数第二道
str = "Python Programming"
print(str.replace("P","",str.count("P")))
# 最后一道
list = [52,49,80,36,14,58,61,23,97,75]
list[::2] = sorted(list[::2])
print(list)
浏览量: 170