[issue6708] raw_input() calls generate compile errors.

2009-08-14 Thread Benjamin Peterson
Benjamin Peterson added the comment: raw_input() has been renamed to input() in Python 3. -- nosy: +benjamin.peterson ___ Python tracker ___ _

[issue6708] raw_input() calls generate compile errors.

2009-08-14 Thread Skip Montanaro
Skip Montanaro added the comment: Try it at the help> prompt without the parens (you're not calling it here, just asking for the documentation on the name "raw_input". help> raw_input Help on built-in function raw_input in module __builtin__: raw_input(...) raw_input([prompt]) -> string

[issue6708] raw_input() calls generate compile errors.

2009-08-14 Thread starz
New submission from starz : # -- SOURCE --- # cheerleading program word = raw_input("Who do you go for? ") for letter in word: call = "Gimme a " + letter + "!" print (call) print (letter) + "!" print( "What does that spell?") print( word + "!") # --- end source ---