07、列表的定义和常用操作 2019-11-30 本文已影响0人 hnssyg a_list = ['abc','xyz'] a_list.append('XYZ') print(a_list) a_list.remove('xyz') print(a_list)