when learning the unicode from python document, I am trying to reproduce the following example
>>> ur'Hello\u0020World !'
  u'Hello World !'
>>> ur'Hello\\u0020World !'
u'Hello\\\\u0020World !'
I use PyCharm as editor, the Python version is 2.7, However, what I get is
>>>ur'Hello\u0020World !'
Hello World !
>>>ur'Hello\\u0020World !'
Hello\\u0020World !
I don't know why the second one is different with what Python document said. What caused the difference?
 
    