#adding new str to set in python set_A= {"Apple", "Orange", "coconut"} set_A.add("pineapple") for x in set_A: print(x)