Generation

generate functionMon, 07 Nov 2022

身長と体重を入力するとBMI値を表示する

def bmi(height, weight) print('BMI = ' + str(weight / (height * height))) bmi(1.75, 65)

Want to kickstart your project?Use the new AI Studio to create your code