Python基础之列表remove2018-12-04 本文已影响0人 S9ptember list1 = [1,4,6,8,4,9,3,] #给一个列表1 list1.remove(4) #移除列表第一个匹配到的值 print(list1) #打印列表1