Archives for the Date February 11th, 2008

Learning Python: Chapter 7

Strings are immutable sequences of characters.
Single- and Double-Quoted Strings Are the Same, they both don’t interpolate at all.
Adjacent string literals are concatenated automatically.
A backslash in a string literal that is not part of an escape sequence is kept in the resulting string.
Unicode string literals are prefixed by the character u; \u und \U can be [...]