#Combine two sets on python: 2nd way.(Union) set_A= {"Apple", "Orange", "coconut"} set_B= {"Green","Blue", "Yellow"} set_C= set_A.union(set_B) for x in set_C: print(x )