Saturday, May 31, 2008

Python Strings

Oh yea... i forgot to mention a Python string feature that I liked.

You can have a string with quotes without having to escape the quotes. You start and end the string with triple quotes, and quotes in the middle are fine.

IE:

""""I like to be quoted!". swell, right?"""

That should make life easier as long as you don't frequently include """ as part of your string literals.

No comments: