+ 1
Dictionaries vs Objects
What is the benefit of using dictionaries over objects in Python 3.x? Examples would be much appreciated.
1 Answer
0
Generally objects and dictionaries are 2 different things. Object is an instance of a class, where dictionary is container that may store objects.