在Python中,可以使用set()函數來去除列表、元組、字符串等數據結構中的重復元素。例如:
# 去除列表中的重復元素
my_list = [1, 2, 3, 1, 2, 3]
unique_list = list(set(my_list))
print(unique_list)
# 去除元組中的重復元素
my_tuple = (1, 2, 3, 1, 2, 3)
unique_tuple = tuple(set(my_tuple))
print(unique_tuple)
# 去除字符串中的重復字符
my_string = "hello"
unique_string = ''.join(set(my_string))
print(unique_string)
運行上述代碼,將會輸出去重后的列表、元組和字符串。