markup icon indicating copy to clipboard operation
markup copied to clipboard

My first python program using if,else #beginner #learner

Open AyyugoudaS opened this issue 2 months ago • 0 comments

age = input("enter your age: ") Age = int(age)

if Age >=18: print("you are an adult")

else: print("you are not an adult")

AyyugoudaS avatar Oct 29 '25 14:10 AyyugoudaS