Escape sequences in Python
An escape sequence or escape character allows you to insert a special character in a string. For example, you can insert a new line in a string using \n character. The backslash \ is used before the character that you want to escape. List of escape characters in Python The following table shows you a … Read more