Jul-14-2020, 02:23 PM
Hello friends, I have started to learn OOP in python and I want some help with the simple class. I am trying to create a simple "person" class and return the birth year of the person. so I am pasting in my atemmt and the error I am geting below.
class Person: def __init_(self, name, age): self.name = name self.age = age self.year = 2020 def get_birth_year(self, name, age): print("hello" + " " + self.name) print("you are bourn") result = self.year - self.age print(result) print("enter your name") name = input() print("enter your age") age = input() p1 = Person() print(p1.get_birth_year(name,age))
Error:Traceback (most recent call last):
File "person.py", line 20, in <module>
print(p1.get_birth_year(name,age))
File "person.py", line 9, in get_birth_year
print("hello" + " " + self.name)
AttributeError: 'Person' object has no attribute 'name'
Thanks for help it mite be something stupid or incorrect logick, but I am trying to learn OOP in python and replicate what i learned in java 5 years ago.