Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

bmi.py
Views: 422 | Author: abh
def bmi(weight: "kg", height: "m"):
    return weight / height ** 2

Comments