📜  将元素插入到 python 代码示例中的集合中

📅  最后修改于: 2022-03-11 14:46:20.555000             🧑  作者: Mango

代码示例1
list1 = [1, 1, 2, 3, 4, 4, 5]
set1 = set(list1)
set1.add(6)            # gets inserted in the set if it does not already exist
set1.add(5)            # gets ignored as it already exists in the set