set()
是 Python 中的一個內(nèi)置數(shù)據(jù)結(jié)構(gòu),它包含不重復的元素,并且支持集合運算,如交集、并集、差集等。要結(jié)合其他數(shù)據(jù)結(jié)構(gòu)使用 set()
,可以參考以下示例:
my_list = [1, 2, 3, 4, 5, 5, 6]
my_set = set(my_list)
print(my_set) # 輸出 {1, 2, 3, 4, 5, 6}
my_tuple = (1, 2, 3, 4, 5, 5, 6)
my_set = set(my_tuple)
print(my_set) # 輸出 {1, 2, 3, 4, 5, 6}
my_dict = {'a': 1, 'b': 2, 'c': 3, 'd': 4, 'e': 5, 'f': 5}
my_set = set(my_dict.values())
print(my_set) # 輸出 {1, 2, 3, 4, 5}
my_string = "hello world"
my_set = set(my_string)
print(my_set) # 輸出 {' ', 'd', 'e', 'h', 'l', 'o', 'r', 'w'}
這些示例展示了如何將其他數(shù)據(jù)結(jié)構(gòu)轉(zhuǎn)換為集合。在實際應(yīng)用中,你可能需要根據(jù)需求對集合進行操作,例如計算兩個集合的交集、并集或差集等。