Reputation: 99
I'm trying to print = " █ " in PyCharm. I get not exception thrown, or TraceBack error. but instead of printing " █ " it prints " ? ". how can I make PyCharm to print the symbol ? it's ASCII code is 219
Upvotes: 1
Views: 227
Reputation: 64
Try this:
>>> print('\u2588')
█
I checked it in pycharm as well, it works.
Upvotes: 1