在Python中,可以使用set()函数来去掉列表中的重复项。
例如,假设有一个包含重复元素的列表:
my_list = [1, 2, 3, 1, 2, 3, 4, 5]
可以使用set()函数将该列表转换为一个集合,然后再将集合转换回列表:
new_list = list(set(my_list))
这样就可以得到一个去掉重复项的新列表:
print(new_list) # 输出:[1, 2, 3, 4, 5]