Created
March 10, 2016 15:19
-
-
Save zhaojunhhu/5c08e0f1d885f5563f06 to your computer and use it in GitHub Desktop.
This file contains hidden or 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, |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
\\Backslash(\)\'Single-quote(')\"Double-quote(")\aASCII bell(BEL)响铃\bASCII backspace(BS)退格\fASCII formfeed(FF)换页\nASCII linefeed(LF)\N{name}Character named name in the Unicode database (Unicode only)\rCarriage Return(CR)\tHorizontal Tab(TAB)\uxxxxCharacter with 16-bit hex value xxxx (Unicode only)\\UxxxxxxxxCharacter with 32-bit hex value xxxxxxxx (Unicode only)\vASCII vertical tab(VT)\oooCharacter with octal value ooo\xhhCharacter with hex value hh