Python list of sets

# list of sets
list_1 = [{'1', '2', '3', '4'}, {'5', '6', '7'}]

# Print The first set
print(list_1[0])

Output:

{'3', '1', '2', '4'}