Dwight GoldWinde <Dwight at GoldWinde.com> writes: > word = input('Enter a word ') Use raw_input instead of input. In python 2.x, input treats the stuff you enter as a Python expression instead of a string.