python Escape Sequences

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/15

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

16 Terms

1
New cards

\\

Backslash (\)

2
New cards

\’

Single-quote (‘)

3
New cards

\”

Double-quote (“)

4
New cards

\a

ASCII bell (BEL)

5
New cards

\b

ASCII backspace (BS)

6
New cards

\f

ASCII form feed (FF)

7
New cards

\n

ASCII newline (LF)

8
New cards

\N{name}

Unicode character name reference.

9
New cards

\r

carriage return (CR)

10
New cards

\t

horizontal tab

11
New cards

\uxxxx

character with 16-bit hex value xxxx

12
New cards

\Uxxxxxxxx

character with 32-bit hex value xxxxxxxx

13
New cards

\v

vertical tab

14
New cards

\ooo

character with octal value ooo

15
New cards

\xhh

character with hex value hh

16
New cards