So I notice that we say in python that sets have no order or arrangement, although of course you can sort the list generated from a set.
So I was wondering how the iteration over a set is defined in python. Does it just follow the sorted list ordering, or is there some other footgun that might crop up at some point?
Thanks.