Simple fix. Change your input to raw_input and off you go. For example:
myName = raw_input("Hello! What's your name kid? ")
Check out the Python documentation for more details, but you want to avoid using input as it's attempting to eval() what is returned;
Warning
This function is not safe from user
errors! It expects a valid Python
expression as input; if the input is
not syntactically valid, a SyntaxError
will be raised. Other exceptions may
be raised if there is an error during
evaluation. (On the other hand,
sometimes this is exactly what you
need when writing a quick script for
expert use.)