[issue4164] String double quoted fatal problem

Amaury Forgeot d'Arc report at bugs.python.org
Tue Oct 21 23:05:20 CEST 2008


Amaury Forgeot d'Arc <amauryfa at gmail.com> added the comment:

All your samples explain easily if you consider that two adjacent string 
literals are joined together. (You seem to consider that "double quote" 
is a way to insert a quote character. It's not; Python is not Pascal or 
SQL)

Your first two examples become:
a='a''a'   two adjacent strings == 'aa'
a='a''''a' three adjacent strings ('a' + '' + 'a') == 'aa'

The third is an error:
a='a''''''a' one string ('a') followed by the beginning of a "triple 
quoted string" (''') which content starts with the characters (''a') but 
does not have a matching (''') to finish the string, hence the Syntax 
error.

... and so on. Please have a look at http://docs.python.org/reference/lexical_analysis.html#string-literals

----------
nosy: +amaury.forgeotdarc
resolution:  -> invalid
status: open -> closed

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4164>
_______________________________________


More information about the Python-bugs-list mailing list