word = input("Enter a word: ")
for x in word:
print(x*2, end="")
first, get the user input for the word. Then, using a for loop, iterate through the user's word. Print each letter twice (that's what the times 2 is used for) and end the print statement with no new line.