I\'d like to know if the absence of element ordering of the Python\'s built-in set structure is \"random enough\". For instance, taking the iterator of a set, c
set
In a word, no:
>>> list(set(range(10000))) == list(range(10000)) True