0
What is " EOL while scanning string literal " error in python
4 Respostas
+ 1
It means that you have missed any line at the end of the code.Please share the code so that I can help you further.
+ 1
EOL full form
0
@Sai Surya End Of Line
0
An EOL ( End of Line ) error indicates that the Python interpreter expected a particular character or set of characters to have occurred in a specific line of code, but that those characters were not found before the end of the line . This results in Python stopping the program execution and throwing a syntax error .
The SyntaxError: EOL while scanning string literal error in python occurs when while scanning a string of a program the python hit the end of the line due to the following reasons:
Missing quotes
Strings spanning multiple lines
http://net-informations.com/python/err/eol.htm