#Combine two sets on python with for loop set_A= {"Apple", "Orange", "coconut"} set_B= {"Green","Blue", "Yellow"} set_A.update(set_B) for x in set_A: print(x)