最佳答案
当你想在Python中清除一个列表时,有什么理由去做比这两行更复杂的事情吗?
old_list = []
old_list = list()
我问这个问题的原因是我刚刚在一些正在运行的代码中看到了这个:
del old_list[ 0:len(old_list) ]