How the sets order the items. Since it always returns them in the same way.
my_set = {45 ,22, 4, 34, 5}
print(my_set)
print(my_set)
print(my_set)
and the output is:
{34, 4, 5, 22, 45}
{34, 4, 5, 22, 45}
{34, 4, 5, 22, 45}
Thanks!
How the sets order the items. Since it always returns them in the same way.
my_set = {45 ,22, 4, 34, 5}
print(my_set)
print(my_set)
print(my_set)
and the output is:
{34, 4, 5, 22, 45}
{34, 4, 5, 22, 45}
{34, 4, 5, 22, 45}
Thanks!