Skip to content

Instantly share code, notes, and snippets.

@zhaojunhhu
Created March 10, 2016 15:19
Show Gist options
  • Save zhaojunhhu/5c08e0f1d885f5563f06 to your computer and use it in GitHub Desktop.
Save zhaojunhhu/5c08e0f1d885f5563f06 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
while True:
for i in ["/","-","|","\\","|"]:
print "%s\r" % i,
@zhaojunhhu
Copy link
Author

  1. \\ Backslash (\)
  2. \' Single-quote(')
  3. \" Double-quote (")
  4. \a ASCII bell (BEL) 响铃
  5. \b ASCII backspace (BS) 退格
  6. \f ASCII formfeed (FF) 换页
  7. \n ASCII linefeed (LF)
  8. \N{name} Character named name in the Unicode database (Unicode only)
  9. \r Carriage Return (CR)
  10. \t Horizontal Tab (TAB)
  11. \uxxxx Character with 16-bit hex value xxxx (Unicode only)
  12. \\Uxxxxxxxx Character with 32-bit hex value xxxxxxxx (Unicode only)
  13. \v ASCII vertical tab (VT)
  14. \ooo Character with octal value ooo
  15. \xhh Character with hex value hh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment