escape sequence in python
ESCAPE SEQUENCES IN PYTHON An escape sequence is a combination of characters that has a meaning other than the literal characters contained in it. When a character is preceded by a backslash (\), it is called an escape sequence and it has a special meaning to the compiler. Here is the table for Python escape sequences:- S.No. ESCAPE SEQUENCE DESCRIPTION 1. \\ Prints backslash 2. \’ Prints single quote 3. \” Prints double quote 4. \a Makes beep sound 5. \b Backspace-removes previous character 6. \f Formfeed 7. \n Newline 8. \r Carriage return 9. \t Horizontal tab 10. \v Vertical tab 11. \uxxxx Returns character with hexadec...