时间:2021-07-01 10:21:17 帮助过:66人阅读
代码如下:
a =[1, 2, 3, 4]
a[2:3] = [] #[1, 2, 4]
del a[2] #[1, 2]
代码如下:
a[ : ] = []
del a[:]
代码如下:
stack = [3, 4, 5]
stack.append(6)
stack.append(7)
stack.pop() # 7
stack.pop() # 6
stack.pop() # 5
代码如下:
b=[1, 2, 3, 4]
b[-2] #3
代码如下:
end = ['st', 'nd'] + 5*['th'] + ['xy'] # ['st', 'nd', 'th', 'th', 'th', 'th', 'th', 'xy']
代码如下:
lst.('hello') # hello 的数量
代码如下:
sort()
#对链表中的元素进行适当的排序。
reverse()
#倒排链表中的元素
代码如下:
def f2(a, L=[])
L.append(a)
return L
print(f2(1)) # 1
print(f2(2)) # 1, 2 L在这次函数调用时是[1]
print(f2(3)) # 1, 2, 3
代码如下:
if x < 0:
x = 0
print 'Negative changed to zero'
elif x == 0:
print 'Zero'
elif x == 1:
print 'Single'
else:
print 'More'
代码如下:
a = ['cat', 'window', 'defenestrate']
for x in a:
print x, len(x)
代码如下:
a, b = 0, 1
while b < 1000:
print b,
a, b = b, a+b
#1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987
代码如下:
while True:
pass
代码如下:
items = [('name', 'dc'), ('age', 78)]
d = dict(items) #{'age': 78, 'name': 'dc'}
代码如下:
x = [] #list
x[2] = 'foo' #出错
x = {} #dictionary
x[2] = 'foo' #正确