在Python中,set()函数用于创建一个集合(set)对象。集合是一个无序且不重复的集合,可以用于去除列表中的重复元素。
set()函数的语法如下:
set(iterable)
其中,iterable是一个可迭代对象(如列表、元组、字符串等)。
下面是一些使用set()函数的示例:
empty_set = set()
my_set = set([1, 2, 3, 4, 5]) # 使用列表作为参数
my_set = set((1, 2, 3, 4, 5)) # 使用元组作为参数
my_set = set("hello") # 使用字符串作为参数
my_list = [1, 2, 1, 3, 4, 2, 5, 3]
unique_set = set(my_list)
my_set.add(6)
my_set.remove(3)
if 3 in my_set:
print("3 is in the set")
这些是set()函数的一些常见用法,你可以根据具体的需求来使用set()函数。