Copyright (c) Hyperion Entertainment and contributors.
AmigaOS Manual: Python Escape Characters
Revision as of 09:15, 21 August 2022 by Janne Peräaho (talk | contribs) (Table of Python escape characters)
In the table below you can find the complete list of Python escape characters.
Code | Description |
---|---|
\0 | Null character |
\' | Single quote |
\" | Double quote |
\\ | Backslash |
\a | Alert (Beep) |
\b | Backspace |
\f | Form Feed |
\n | New Line |
\r | Carriage Return |
\t | Tab |
\v | Vertical tab |
\ooo | Octal value ooo |
\xhh | Hexadecimal value hh |