Skip to content

Instantly share code, notes, and snippets.

@kipkitur
Created July 16, 2020 02:24
Show Gist options
  • Save kipkitur/0c414854b50050ba7924608e6c4e4f6e to your computer and use it in GitHub Desktop.
Save kipkitur/0c414854b50050ba7924608e6c4e4f6e to your computer and use it in GitHub Desktop.
name = "yoda"
age = 900
height = 2.2
weight = 50
bmi = weight / round(height ** 2)
print("bmi: ")
print(bmi)
if bmi < 25:
print(name + " is not overweight")
else:
print(name + " is overweight")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment