摘要: 本文介绍清空list的四种方法,以及 list=[ ] 和 list.clear() 在使用中的区别(坑)。 1、使用clear()方法 lists = [1, 2, 1, 1, 5] lists.clear() print(lists) >>>[] 2、重新初始化列表:初始化该范围内的列表,初始化 阅读全文
posted @ 2024-07-29 19:31 嗨学编程 阅读(744) 评论(0) 推荐(0) 编辑