Does an ordinary for/in statement guarantee the list is iterated in order?
my_list = [5,4,3,2] for i in my_list print(i)
That is, is the lo
For lists, yes, since they are ordered data structures in Python.