私のコードでfloatデータ型を取得しようとしています。私のコードはこれまで通りです。あなたは私はPythonの1つの変数に2つのデータ型を使用しようとしていますか?
age = float(input("Age of the dog: "))
にあなたの最初の行を変更した場合は
age = int (input("Age of the dog: "))
if age <= 0:
print ("This can not be true!")
elif age == 1:
print ("He/she is about 14 in human years.")
elif age == 2:
print ("He/she is about 22 in human years.")
elif age > 2:
human = 22 + (age - 2) * 5
print ("He/she is about", human, "human years")
Doがあなたの年齢が同様に浮動小数点で最後に表示したい言及します。 – thiruvenkadam