Why do I see two back slashes when I type variable name on python shell ?
>>> print '6\\3=2'
6\3=2           ==> Correctly prints back slash
>>> var1='6\\3=2'
>>> print(var1)
6\3=2          ==> Correctly prints back slash
>>> var1
'6\\3=2'       ==> Why do I see two back slashes here ? Instead of just one ? 
>>>