3、list.remove(元素),删除列表中的元素值。如heros = ["盖伦","赵信","皇子","亚索"],herose.remov("盖伦"),print(heros) , 输出结果:["赵信","皇子","亚索"],如果列表中有多个相同元素,删除时,只删除第一个元素。 Python列表基本操作思维导图...