python eol
# If you are facing eol while scanning string literal to resolve add the missing quotes and use the format specifier properly.
# Example of EOL Error
def getName():
print("My name is Chandler Bing)
getName()
# Output
File "c:\Projects\Tryouts\listindexerror.py", line 2
return "My name is Chandler Bing
^
SyntaxError: EOL while scanning string literal
# Solution to EOL Error
def getName():
print("My name is Chandler Bing")
getName()
# Output
My name is Chandler Bing