2018年11月14日 星期三

[python] How to DELETE List


x=[0,1,2,3,4,5,6,7,8,9]
x[1:2]=[]
print(x)

output:
[0, 2, 3, 4, 5, 6, 7, 8, 9]

Describe: x[start:end]

沒有留言:

熱門文章