print({4, 7, 10})
gives as output
{10, 4, 7}
But I'm working with the indexes of the set.. therefore it's important the order stays the same. Anyone knows how to prevent this?
{4, 7, 10, 11, 12, 17}
gives me
{17, 4, 7, 10, 11, 12}
so it seems that the last item in the set is placed in front. I think it's pretty weird since I didn't say that it needs to happen. I'm just using the print function!