DogAgePerYearInHuman = 7
HumanAge = input("What is your age?")
HumanAgeIfDog = DogAgePerYearInHuman * HumanAge
print(f"If you would be a dog you would be {DogAgePerYearInHuman} years old")
The output is always 7
question from:https://stackoverflow.com/questions/65942188/dog-age-converter-python-always-puts-out-7