On Console:
>>> print {"key": ["äüö"]}
{'key': ['\xc3\xa4\xc3\xbc\xc3\xb6']}
How can I easily let python print something like this:
>>> print {"key": ["äüö"]}
{'key': ['äüö']}
I don't like to print unicode characters like in How to print Unicode character in Python? I like to have an easy way to print the content of a dictionary.