Just to present a complete picture, not mentioned in this thread are
triple-quoted strings:

    'abc' == '''abc''' == "abc" == """abc"""

Triple-quoted strings are no different than regular strings, though they do
allow literal newlines to be embedded in the string.  Their presence is most
often detected in doc strings precisely for this reason.

Skip
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to