InterviewSolution
Saved Bookmarks
| 1. |
Define escape sequence in python. |
|
Answer» Escaping in Python In Python, escape sequences are indicated by a backslash ( \ ). The most important one may be \n which indicates a NEW line. Like so, multiple logical lines can be stacked into a SINGLE PHYSICAL line. Another escape sequence worth mentioning is \' for a single quote within a string. |
|