I\'m getting an error while running the following code:
class Person: def _init_(self, name): self.name = name def hello(self): print \'Initiali
Use double underscores for __init__.
__init__
class Person: def __init__(self, name):
(All special methods in Python begin and end with double, not single, underscores.)