Advertisement
python_notes

EOL Error

Aug 18th, 2014
447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. # EOL Error
  2.  
  3. EOL Error means end of line so Pyhton is telling you that it hit the end of the line and did not find a double quote to close the string.
  4.  
  5.  
  6. # Example
  7.  
  8.  
  9.  
  10.   File "helloworld.py", line 2
  11.     print "hello world
  12.                     ^
  13. SyntaxError: EOL while scanning string literal
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement