Created
September 24, 2013 22:28
-
-
Save akreer135/6692212 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
persian_cat = "I'm split\non a line." | |
backslash_cat = "I'm \\ a \\ cat." | |
fat_cat = """ | |
I'll do a list: | |
\t* Cat food | |
\t* Fishies | |
\t* Catnip\n\t* Grass | |
""" | |
print tabby_cat | |
print persian_cat | |
print backslash_cat | |
print fat_cat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment