del 用于list列表操作,删除一个或者连续几个元素示例程序如下:>>> a = [-1, 3, 'aa', 85] # 定义一个list>>> a[-1, 3, 'aa', 85]>>> del a[0] # 删除 ...
確定! 回上一頁