height="H"weight="W"H=input("請輸入你的身高(公尺):")W=input("請輸入你的體重:")BMI=float(W)/(float(H)*float(H)) #輸入後為文字,需轉為數字型態BMI=round(BMI,2) #取小數2位print('你的BMI是{}'.format(BMI))
radius="R"pi=float("3.14")R=float(input("請輸入半徑:"))arer=R*R*piprint("圓面積為{}".format(arer))
c = input("請輸入攝氏溫度:",)f = (9/5)*int(c)+32print("轉換成華氏溫度為",end="")print(f)