I have a set that contains the following :
True
False
42
Thorium
3.1415
When I print the set, I always see that False is listed first followed by True. The next 3 elements are in a random order.
Any reasons for this? I was expecting all the elements to be randomly ordered including booleans when I print the set multiple times.