python中关于删除list中的某个元素,一般有三种方法:remove、pop、del 1.remove: 删除单个元素,删除首个符合条件的元素,按值删除举例说明: >>> str
使用python random模块的choice方法随机选择某个元素 from random import choice foo = ['a', 'b', 'c', 'd', 'e'] print (