Python列表的常用操作符有以下几种:
加号(+):用于连接两个列表,生成一个新的列表。
list1 = [1, 2, 3] list2 = [4, 5, 6] result = list1 + list2 print(result) # 输出:[1, 2, 3, 4, 5, 6]
乘号(*):用于重复列表中的元素,生成一个新的列表。
list1 = [1, 2, 3] result = list1 * 3 print(result) # 输出:[1, 2, 3, 1, 2, 3, 1, 2, 3]
索引([]):用于访问列表中的元素。
my_list = ['apple', 'banana', 'orange'] first_fruit = my_list[0] second_fruit = my_list[1] print(first_fruit) # 输出:'apple' print(second_fruit) # 输出:'banana'
切片([:]):用于获取列表中的子列表。
my_list = [0, 1, 2, 3, 4, 5] sub_list = my_list[1:4] print(sub_list) # 输出:[1, 2, 3]
len():用于获取列表的长度(元素个数)。
my_list = [1, 2, 3, 4, 5] length = len(my_list) print(length) # 输出:5
in和not in:用于判断元素是否在列表中。
my_list = [1, 2, 3, 4, 5] if 3 in my_list: print("3 is in the list") if 6 not in my_list: print("6 is not in the list")