Created
March 10, 2016 15:19
-
-
Save zhaojunhhu/5c08e0f1d885f5563f06 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
while True: | |
for i in ["/","-","|","\\","|"]: | |
print "%s\r" % i, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
\\
Backslash(\)
\'
Single-quote(')
\"
Double-quote(")
\a
ASCII bell(BEL)
响铃\b
ASCII backspace(BS)
退格\f
ASCII formfeed(FF)
换页\n
ASCII linefeed(LF)
\N{name}
Character named name in the Unicode database (Unicode only)\r
Carriage Return(CR)
\t
Horizontal Tab(TAB)
\uxxxx
Character with 16-bit hex value xxxx (Unicode only)\\Uxxxxxxxx
Character with 32-bit hex value xxxxxxxx (Unicode only)\v
ASCII vertical tab(VT)
\ooo
Character with octal value ooo\xhh
Character with hex value hh