Python most complete escape character

Python most complete escape character

Escape character description
\ Continuation character (when the end of the line)
\\ Backslash
' apostrophe
" Double quotes
\a Bell
\b backspace
\e Escape
\000 air
\n Wrap
\ v Vertical tab
\t Horizontal tab
\r Enter
\f Feed
\ oyy Yy character octal number represented, for example: \ o12 represent the newline
\xyy Yy represents the decimal character, for example: \ x0a behalf wrap
\other Other characters output in a common format

Guess you like

Origin www.cnblogs.com/heimaguangzhou/p/11506022.html