I encounter a simple but weird question. I want to display a dictionary like {‘file_path’: ‘\11.1.2.3\file1’} using following sentences:
>>> mydict = {'file_path': '\\\\11.1.2.3\\file1'}
>>> mydict
{'file_path': '\\\\11.1.2.3\\file1'}
I prepend r to the value string:
>>> mydict = {'file_path': r'\\11.1.2.3\file1'}
>>> mydict
{'file_path': '\\\\11.1.2.3\\file1'}
The result is same with the foregoing one, which are not expected.
Anyone can provide a method to display the dictionary, not print the value only? Thanks in advance!
Make your own print function:
Or if you only want one particular key.
Using comprehension: