Ch 19 if statement
#if statement use to check user conditions
age=input("enter your age")
age=int(age)
If age >=14: ------the last one is impo
Print("you can watch the movie")
#And the space in starting is important
#if statement use to check user conditions
age=input("enter your age")
age=int(age)
If age >=14: ------the last one is impo
Print("you can watch the movie")
#And the space in starting is important
Comments
Post a Comment