可以使用add()方法向集合中添加一个新项fruitsset = {"apple", "banana", "cherry"}fruitsset.add("orange")print(fruitsset)执行结果:{'apple', 'cherry', 'orange', 'banana'}