0
Collection
What is the difference between ordered and unordered collections in python?
4 Antworten
+ 5
Raine04 ,
you can read this to get more informations:
https://www.codesansar.com/JUMP_LINK__&&__python__&&__JUMP_LINK-programming/ordered-vs-unordered.htm
+ 2
Google It
+ 2
Ordered collections maintain the order of elements, unordered collections do not.
Unordered collections automatically remove duplicates, ordered collections do not.
Ordered collections access elements by their index, unordered collections do not.
0
Ok