可以使用 del 语句来删除列表的的元素,如下实例:
实例(Python 3.0+)
#!/usr/bin/python3 list = [‘Google’, ‘python-100’, 1997, 2000] print (“原始列表 : “, list) del list[2] print (“删除第三个元素 : “, list)
以上实例输出结果:
原始列表 : ['Google', 'python-100', 1997, 2000] 删除第三个元素 : ['Google', 'python-100', 2000]
注意:我们会在接下来的章节讨论 remove() 方法的使用
评论0