Do you know where to find a comprehensive list of escape characters using the backward slash? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Do you know where to find a comprehensive list of escape characters using the backward slash?

27th Jul 2017, 10:56 AM
Yet another Order from Chaos
Yet another Order from Chaos - avatar
2 Answers
+ 1
https://docs.python.org/3.2/reference/lexical_analysis.html#index-15 WEBSITE CONTENTS: \newline Backslash and newline ignored  \\ Backslash (\)  \' Single quote (')  \" Double quote (")  \a ASCII Bell (BEL)  \b ASCII Backspace (BS)  \f ASCII Formfeed (FF)  \n ASCII Linefeed (LF)  \r ASCII Carriage Return (CR)  \t ASCII Horizontal Tab (TAB)  \v ASCII Vertical Tab (VT)  \ooo Character with octal value ooo \xhh Character with hex value hh ONLY RECOGNIZED IN STRINGS: \N{name} Character named name in the Unicode database  \uxxxxCharacter with 16-bit hex valuexxxx \UxxxxxxxxCharacter with 32-bit hex valuexxxxxxxx
27th Jul 2017, 11:38 AM
God Usopp
God Usopp - avatar
+ 2
thanks God! (literally)
4th Aug 2017, 3:21 PM
Yet another Order from Chaos
Yet another Order from Chaos - avatar