A WORD ABOUT STRINGS
- Python supports both single-byte and UNICODE (2-byte) strings
- Python string data type is quite user-friendly:
'this a string'
"this is also a string"
"""this is
a multiline
"unescaped"
string"""
- you can mix different string delimiters like this:
print '<a href="homepage.html">Home Page</a>'