• + 0 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

        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())