Copyright (c) Hyperion Entertainment and contributors.

AmigaOS Manual: Python Escape Characters: Difference between revisions

From AmigaOS Documentation Wiki
Jump to navigation Jump to search
Content deleted Content added
Table of Python escape characters
 
mNo edit summary
Line 6: Line 6:
|-
|-
| \0 || Null character
| \0 || Null character
|-
| \' || Single quote
|-
|-
| \" || Double quote
| \" || Double quote
|-
| \' || Single quote
|-
|-
| \\ || Backslash
| \\ || Backslash

Revision as of 08:17, 21 August 2022

In the table below you can find the complete list of Python escape characters.

Code Description
\0 Null character
\" Double quote
\' Single 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