Python Syntax Escape Characters Flashcards
Learn Python Programming language Syntax for escape charaters
1
Q
\
A
back slash
2
Q
'
A
single quote
3
Q
"
A
double quote
4
Q
\a
A
bell sound
5
Q
\b
A
back space
6
Q
\f
A
form feed
7
Q
\n
A
newline
8
Q
\N {unicode name}
A
Unicode character with name in unicode database
9
Q
\r
A
ASCII carriage return
10
Q
\t
A
ASCII horizontal tab
11
Q
\uxxxx
A
Unicode character with 32-bit hex value of xxxxxxxx
12
Q
\v
A
ASCII vertical tab
13
Q
\ooo
A
Character with octal value ooo
14
Q
\xhh
A
Character with hex value hh