my_set = (1.0 , "Hello" ,( 1, 2, 3))
print(my_set)

my_set = {1, 2, 3, 4, 3, 2}
print(my_set)

my_set = set([1,2,3,4])
print = (my_set,"\n")

num_set = set([0 ,1 ,3 ,4 ,5 ])
print("Oringinal set:")
print(num_set)

num_set.pop()
print("after removing the first element of the said set:")
print = (my_set,"\n")

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: