We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
class Person:
def init(self,initialAge):
# Add some more code to run some checks on initialAge
self.age = 0
self.Age = initialAge
print("Age is not valid, Seeting age to 0..")
def amIOld(self):
# Do some computations in here and print out the correct statement to the console
if age < 13:
print("You are young")
elif age>=13 and age <18:
print("You are a teenager")
else:
("You are old")
def yearPasses(self):
# Increment the age of the person in here
self. Age +=1
t = int(input())
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Day 4: Class vs. Instance
You are viewing a single comment's thread. Return to all comments →
im getting wrong anwser, please help me
class Person: def init(self,initialAge): # Add some more code to run some checks on initialAge self.age = 0 self.Age = initialAge
t = int(input())