In python, is there anyway to input a string without quotation marks?
I want user to input a name of a table, table = str(input("table: ")) works, but it's kind of annoying to put 'name' everytime instead of just name, is there any work around for this?
stackoverflow.com