Quick actions

cmd+k|ctrl+k

Navigation

Languages

Sets

Snippet info

Language

Python

Visibility

public

Author

ak.amita28

Created

2026-04-21T09:39:20.526299Z

Updated

2026-04-21T09:39:20.526299Z

my_set = {1,2,3,4,5,5}
new_set = {4,5,6,7,8,9,9}

print(my_set)
# print(list(my_set))
# # new = list(my_set)
# # print(new)
INFO