+ 1
Fix of lesson
in this lesson it tells us that lists and dictionaries are immutable, which is false, an immutable object is for example a tuple, since its values ââcan not be changed
2 Answers
+ 4
Is it this you are complaining about? It is copied from the Python course
Only immutable objects can be used as keys to dictionaries. Immutable objects are those that can't be changed. So far, the only mutable objects you've come across are lists and dictionaries. Trying to use a mutable object as a dictionary key causes a TypeError.
0
you dont understand that I am saying