Files
BMI/backend.py
T
2026-05-02 16:29:46 +03:00

9 lines
226 B
Python

def calculate(height, wight):
result = wight / height ^ 2
return result
def user_input_check(height, wight):
if height.isdigit() and wight.isdigit():
if height != 0 and wight != 0:
return True