列表和集合 / 无重复集合

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

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