Python Classes
Why classes?
example
Let's say we're trying to organize data of the people living in a village. Without Classes, it would look like this:
p1 = {'name': 'Josh', 'age': 18, 'sex': 'male', 'hobby': 'reading'}
p2 = {'name': 'Eric', 'age': 32, 'sex': 'mal...
developmentblog.hashnode.dev3 min read
Akash Mishra
I post Data Science, Machine Learning, Python and SQL contents.
Good read!!