Can anyone explain to me why :
p = {-1,2,-3}
print(p)
will print
{2, -3, -1}
and when I convert to list
pa = list(p)
print(pa)
I will get
[2, -3, -1]
How can I convert p to a list with the same order of items
[-1, 2, -3]
PS: this happens only when I am using negative items