Python Escape Characters
Python Escape Characters Table Escape Character Explanation \’ Single Quote \” Double Quote \n Newline Character \t Tabular Character \b Backspace Character \r Carriage Return \\ Backslash \ Form Feed \ooo Octal Value \xhh Hex Value Examples The following examples show the working of the different escape characters in a Python context. We provide the … Read more