I want to get a string from a user, and then manipulate it.
testVar = input("Ask user for something.")
Can testVar be made a string without having the user to type his response in quotes? i.e. "Hello" vs. Hello
If the user types in Hello, the following error message appears:
NameError: name 'Hello' is not defined