word = input('Enter a word: ') for c in word: print(2*c, end='') # avoid trailing newline print() # final print will output the newline