set函數(shù)在python中的基本用法是什么

小樊
82
2024-09-14 06:43:42

在Python中,set() 函數(shù)用于創(chuàng)建一個(gè)集合(set)。集合是一個(gè)無(wú)序的不重復(fù)元素序列??梢允褂么罄ㄌ?hào) {} 或者 set() 函數(shù)來(lái)創(chuàng)建集合。

set() 函數(shù)的基本語(yǔ)法如下:

set([iterable])

其中,iterable 是一個(gè)可迭代對(duì)象(例如列表、元組、字符串等),它的元素將被添加到新創(chuàng)建的集合中。如果省略了 iterable 參數(shù),則將創(chuàng)建一個(gè)空集合。

以下是一些使用 set() 函數(shù)的示例:

# 使用 set() 函數(shù)創(chuàng)建空集合
empty_set = set()
print(empty_set)  # 輸出:set()

# 使用 set() 函數(shù)從列表創(chuàng)建集合
my_list = [1, 2, 3, 4, 4, 5]
my_set = set(my_list)
print(my_set)  # 輸出:{1, 2, 3, 4, 5}

# 使用 set() 函數(shù)從字符串創(chuàng)建集合
my_string = "hello"
my_set = set(my_string)
print(my_set)  # 輸出:{'h', 'e', 'l', 'o'}

請(qǐng)注意,由于集合中的元素是唯一的,因此在創(chuàng)建集合時(shí),重復(fù)的元素將被自動(dòng)刪除。

0