📜  设置替换python代码示例

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

代码示例1
# Replace 1 with 4
s = {1, 2, 3}
s.remove(1)
s.add(4)