I am trying to figure out how to configure Pycharm to use " and not ' when printing to console.
I've checked it, and it doesn't matter what I am using in the code itself, even if it is:
print({"Hello World": "Great!"})
It shows up like:
{'Hello World': 'Great!'}
and not
{"Hello World": "Great!"}
As desired, I need this because when I want to format a long dictionary and view it as a nice indented JSON (and not a long line), it doesn't work as it is not a valid JSON as it uses the single quotation mark.
Any ideas? Thanks!