私はPythonを初めて使用しますが、DogAgeを数式に入れようとしましたが、まだ機能していません
Animal = input("dog or cat? ")
if Animal == "dog":
DogAge = int(input("how old is you dog? "))
else:
CatAge = int(input("how old is your cat? "))
if DogAge == 1:
print("your dog's age is 11")
elif DogAge == 2:
print("your dog's age is 22")
else:
print("your dog's age is " + (DogAge - 2 * 4 + 22))
与える:
TypeError:'int'オブジェクトを暗黙的にstrに変換できません