the description
---------------
what is the output of this block of code ?
class Student:
''' description of the class '''
def __init__(self, id_:int):
self.id_ = id_
s = Student(100)
s.__dict__['hello'] = 'hello'
print(s.id_ + len(s.__dict__))
useful links
------------
book:
https://www.amazon.co.uk/dp/B0BHL2XKCR
useful hashtags
---------------
#python
#pythontutorial
#pythonprogramming
#pythonforbeginners
#pythonprojects