Hi, Disclaimer: I am new to python and coding in general
I am trying to make a simple application that will print a word a specific number of times.
Running my code now, despite my initial input for (times) the program will only print (word) once before exiting.
Here's My Code:
# Double Words
times = input('Ho w many times would you like to repeat your word?')
word = input('Enter your word:')
for times in times:
print(word)