I'm EXTREMELY new to coding in general so i'm sorry if this is a dumb question but... I'm having a problem, and that is when I try to add text to an Input multiplication (I don't know if it has a name) it freaks out.
I've seen a few "solutions" about it, and it works for specific cases, but it messes up in this one.
This is my code:
j = input("What is your age? : ")
j = str(j)
DogY = (j * 7)
print("Your age in dog years is " + DogY)
I'm trying to make a dumb "Your age in dog years is * blank *." thing but this happens, I can't get what i'm looking for. If I input something easy like 10 (easy for me because I don't have to do math), this happens
What I want is:
Your age in dog years is 70
Instead I get
Your age in dog years is 10101010101010
I'm sure it has the easiest solution but I can't figure it out or find the solution anywhere. Please help