在Python中,set()
是一個內(nèi)置函數(shù),用于創(chuàng)建一個新的集合。你可以使用set()
函數(shù)將一個可迭代對象(例如列表、元組或字符串)轉(zhuǎn)換為集合。
下面是一些示例:
# 使用set()函數(shù)創(chuàng)建空集合
empty_set = set()
print(empty_set) # 輸出:set()
# 使用set()函數(shù)從列表創(chuàng)建集合
my_list = [1, 2, 3, 4, 5, 5, 6]
my_set = set(my_list)
print(my_set) # 輸出:{1, 2, 3, 4, 5, 6}
# 使用set()函數(shù)從元組創(chuàng)建集合
my_tuple = (1, 2, 3, 4, 5, 5, 6)
my_set = set(my_tuple)
print(my_set) # 輸出:{1, 2, 3, 4, 5, 6}
# 使用set()函數(shù)從字符串創(chuàng)建集合
my_string = "hello"
my_set = set(my_string)
print(my_set) # 輸出:{'h', 'e', 'l', 'o'}
請注意,集合中的元素是唯一的,因此在上面的示例中,重復(fù)的元素(例如數(shù)字5)只會出現(xiàn)一次。