Списки и коллекции / Множества

int_set = {123}
str_set = {"one""two""three"}

print(f'{int_set = }')
print(f'{str_set = }')