I use Pycharm/Intellij Idea. When I print some data with diacritics into console, it prints in proper format.
print u"čipsy"
čipsy
But when I print the list of items containing diacritics, it prints them in raw format.
print [u"čipsy"]
[u'\u010dipsy']
Is it possible to make my IDE to print it in a proper format? So the input would be:
print [u"čipsy"]
['čipsy']