forked from hhzzer/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathex10.py
More file actions
23 lines (20 loc) · 390 Bytes
/
ex10.py
File metadata and controls
23 lines (20 loc) · 390 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ex10.py
tabby_cat = "\t I'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
"""
print tabby_cat
print persian_cat
print backslash_cat
print fat_cat
#i = "/dd-ddfafa\\sadfa|aaa|"
#while True:
# for i in ["/","-","|","\\","|"]:
# print "%s\r" %i,
# print "%r\r" %i
# break