0
what are the differences between tuples,lists and dictionarys in python3?
Tuples,lists,dictionary do same works.why they are created and what are the uses?
1 Odpowiedź
+ 2
(Tuples) are collections of elements, immutable.
[Lists] are collections of elements, mutable.
{Dictionaries} are collections of maps key=>value, mutable.
http://sthurlow.com/JUMP_LINK__&&__python__&&__JUMP_LINK/lesson06/