Untitled
unknown
plain_text
3 years ago
305 B
5
Indexable
tabby_cat = "\tI'm tabbed in." persian_cat = "I'm split\ton a line." forward_cat = "Don't remove this" backslash_cat = "i'm \a\\ cat." fat_cat = """ i'll do a list: \t* cat foof \n* fishies \t catnip\t\t* grass """ print(tabby_cat) print(persian_cat) print(baclslash_cat) print(fat_cat)
Editor is loading...