Skip to content

Instantly share code, notes, and snippets.

@santosadrian
Created February 2, 2020 08:57
Show Gist options
  • Save santosadrian/2d8041f439436a77ce215634f192de4b to your computer and use it in GitHub Desktop.
Save santosadrian/2d8041f439436a77ce215634f192de4b to your computer and use it in GitHub Desktop.
Example 10
tabby_cat = "\tI'm tabbed in."
persian_cat = "I'm split\non a line"
blackslash_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(blackslash_cat)
print(fat_cat)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment