29 lines
454 B
Python
29 lines
454 B
Python
tabby_cat = "\tI'm tabbed in."
|
|
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
|
|
"""
|
|
|
|
fat_cat_single = '''
|
|
I'll do a list:
|
|
\t* Cat food
|
|
\t* Fishies
|
|
\t* Catnip\n\t* Grass
|
|
'''
|
|
|
|
new_test = """
|
|
\t tap \a BELL \r CR \f FF
|
|
\\ \u0032 \U00000033
|
|
"""
|
|
|
|
print(tabby_cat)
|
|
print(persian_cat)
|
|
print(backslash_cat)
|
|
print(fat_cat)
|
|
print(fat_cat_single)
|
|
print(new_test)
|