Advertisement
Guest User

new

a guest
Jul 22nd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. height = 1.8
  2. weight = 80
  3. BMI = weight/(height**2)
  4. if BMI>20:
  5.     print('more than 20')
  6. else:
  7.     print('less than 20')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement