the wrong solution :
x_set = set ('ABCDE')
y_set = set ('CDEFG')
print (x_set)
print (y_set)
Type your code here
x_set.union(y_set)
print (x_set)
Pases the test, please verify
Regards,Maciej
the wrong solution :
x_set = set ('ABCDE')
y_set = set ('CDEFG')
print (x_set)
print (y_set)
x_set.union(y_set)
print (x_set)
Pases the test, please verify
Regards,Maciej
Thank you for your valuable feedback Maciej. There is a technical glitch in the print statement; we are working on that.
Until now, we have modified the exercise; you can proceed.