Python3 列表
clear() 函数用于清空列表,类似于 del a[:]。
clear()方法语法:
list.clear()
该方法没有返回值。
以下实例展示了 clear()函数的使用方法:
#!/usr/bin/python3 list1 = ['Google', 'Runoob', 'Taobao', 'Baidu'] list1.clear() print ("列表清空后 : ", list1)
以上实例输出结果如下:
列表清空后 : []