Skip to content

Instantly share code, notes, and snippets.

@akreer135
Created September 24, 2013 22:28

Revisions

  1. akreer135 created this gist Sep 24, 2013.
    14 changes: 14 additions & 0 deletions lesson10.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    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