Error in python and hive


I am getting error as column not parsed.
Please help!!

Next time, please paste

  • the listing of your code (better than screenshots since we can try it out),
  • the error message, including the full traceback, which gives a clue of the error.

Glancing at your screen, I would guess that you have an extraneous space in

" ""

for the string delimiters. There should be just three " consecutive signs. Otherwise, the first " is taken as the start of a string, which the second " ends, then the third " starts a new string (concatenated with the first one, search for “implicit string concatenation in Python”). But since that new string is started with one single ", it cannot span more than one line.

Please do not post unnecessary screenshots of code.

If you are getting an error, what does the error say?