001、
>>> set1 = {"a", "b", "c", "d"} ## 测试集合 >>> set1 {'c', 'a', 'd', 'b'} >>> set1.remove("d") ## 删除集合中的元素 >>> set1 {'c', 'a', 'b'} >>> set1.add("x") ## 向集合中添加元素 >>> set1 {'x', 'c', 'b', 'a'}
标签:python,元素,##,添加,中向,set1,集合 From: https://www.cnblogs.com/liujiaxin2018/p/16588292.html