Shared Flashcard Set

Details

Python: Escape Sequences
Learn Python the Hard Way: Lesson 10
15
Computer Science
Pre-School
05/29/2013

Additional Computer Science Flashcards

 


 

Cards

Term
\\
Definition
\
Term
\'
Definition
Single quote (')
Term
\"
Definition
Double quote (")
Term
\a
Definition
ASCII Bell (BEL)
Term
\b
Definition
ASCII Backspace (BS)
Term
\f
Definition
ASCII Formfeed (FF)
Term
\n
Definition

ASCII Linefeed (LF)

In computing a newline,[1] also known as a line break or end-of-line (EOL) marker, or simply break, is a special character or sequence of characters signifying the end of a line of text.

Term
\N{name}
Definition
Character named name in the Unicode database (Unicode only)
Term
\r ASCII
Definition
Carriage Return (CR)
Term
\t ASCII
Definition
Horizontal Tab (TAB)
Term
\uxxxx
Definition
Character with 16-bit hex value xxxx (Unicode only)
Term
\Uxxxxxxxx
Definition
Character with 32-bit hex value xxxxxxxx (Unicode only)
Term
\v
Definition
ASCII Vertical Tab (VT)
Term
\ooo
Definition
Character with octal value ooo
Supporting users have an ad free experience!