--> In String literals we can use escape characters to associate a special meaning.
>>>s="siddu\nsoftware"
>>> print(s)
durga
software.
>>>s="siddu\tsoftware"
>>> print(s) #siddu software
>>>s="This is " symbol"
File "<stdin>", line 1
s="This is "symbol"
SyntaxError: invalid syntax
>>>s="This is \" symbol"
>>> print(s)
This is "symbol
-->The following are various important escape characters in Python
\n===>New Line
\t===>Horizontal tab
\r===>Carriage Return
\b===>Back space
\f===>Form Feed
\V==>Vertical tab
\'>Single quote
\">Double quote
\\===>back slash symbol