値のエラーが発生し、コードをいじってみてもうまくいきません!
どうすれば正しくなりますか?- Python 3.3.2 を使用しています。
コードは次のとおりです。
ご覧のとおり、プログラムは何マイル歩くことができるかを尋ね、入力内容に応じて応答を返します。
これはテキスト形式のコードです:
print("Welcome to Healthometer, powered by Python...")
miles = input("How many miles can you walk?: ")
if float(miles) <= 0:
print("Who do you think you are?!! Go and walk 1000 miles now!")
elif float(miles) >= 10:
print("You are very healthy! Keep it up!")
elif float(miles) > 0 and miles < 10:
print("Good. Try doing 10 miles")
else:
print("Please type in a number!")
miles = float(input("How many miles can you walk?: "))
if miles <= 0:
print("Who do you think you are?!! Go and walk 1000 miles now!")
elif miles >= 10:
print("You are very healthy! Keep it up!")
elif miles > 0 and miles < 10:
print("Good. Try doing 10 miles")