Answers for "#Combine two sets on python with for loop: reverse way in one line with space"

0

#Combine two sets on python with for loop: reverse way in one line with space

#Combine two sets on python with for loop: reverse way in one line with space

set_A= {"Apple", "Orange", "coconut"}
set_B= {"Green","Blue", "Yellow"}

set_B.update(set_A)


for x in set_B:
    print(x , end=" ")
Posted by: Guest on February-24-2022

Code answers related to "#Combine two sets on python with for loop: reverse way in one line with space"

Python Answers by Framework

Browse Popular Code Answers by Language