Shared Flashcard Set

Details

Escape Characters in Python
List of the Escape Characters in Python
16
Computer Science
Beginner
01/03/2021

Additional Computer Science Flashcards

 


 

Cards

Term

Escape

 

\\

 

 

Definition

What it does.

 

Backslash (\)

Term

Escape What

 

\'

Definition

What it does.

 

Single-quote (')

Term

Escape

\"

Definition

What it does.

Backslash (\)

Term

Escape

\a

Definition

What it does.

ASCII bell (BEL)

Term

Escape

\b

Definition

What it does.

ASCII backspace (BS)

Term

Escape

\f

Definition

What it does.

ASCII formfeed (FF)

Term

Escape

\n

Definition

What it does.

ASCII linefeed (LF)

Term

Escape

\N{name}

Definition

What it does.

Character named name in the Unicode database (Unicode only)

Term

Escape

\r

Definition

What it does.

Carriage return (CR)

Term

Escape

\t

Definition

What it does.

Horizontal tab (TAB)

Term

Escape

\uxxxx

Definition

What it does.

Character with 16-bit hex value xxxx

Term

Escape

\Uxxxxxxxx

Definition

What it does.

Character with 32-bit hex value xxxxxxxx

Term

Escape

\v

Definition

What it does.

Backslash (\)

Term

Escape

 

\v

 

 

Definition

What it does.

 

ASCII vertical tab (VT)

Term

Escape

\000

Definition

What it does.

Character with octal value 000

Term

Escape

\xhh

Definition

What it does.

Character with hex value hh

Supporting users have an ad free experience!