Skip to content

Instantly share code, notes, and snippets.

@saaeiddev
Created September 19, 2022 20:51
Show Gist options
  • Save saaeiddev/5637295d61a953aab034ff107373a97d to your computer and use it in GitHub Desktop.
Save saaeiddev/5637295d61a953aab034ff107373a97d to your computer and use it in GitHub Desktop.
health
Name = input("please enter your name : ")
print("welcome" , Name)
Age = int(input("please enter your Age : "))
if Age > 20:
print("you can enter ")
elif Age < 20:
print("you cant enter")
else:
print("no you cant enter")
weight = float(input("please enter your weight : "))
if weight > 100.00:
print("your so fat")
print(weight)
elif weight < 100.00:
print("medium")
print(weight)
elif weight < 70.00:
print("thin")
print(weight)
else:
print("try again")
height = float(input("please enter your height : "))
if height > 180.4:
print("tall")
print(height)
elif height < 176.5:
print("medium")
print(height)
elif height < 160.00:
print("short")
print(height)
else:
print("try again")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment