SyntaxFix
Write A Post
Hire A Developer
Questions
If you want to use input instead of raw_input in python 2.x,then this trick will come handy
if hasattr(__builtins__, 'raw_input'): input=raw_input
After which,
testVar = input("Ask user for something.")
will work just fine.