简体   繁体   中英

How to change the font of Run terminal on Pycharm

I work with some Persian text files and when I run PyCharm it shows the result like this:

在此处输入图片说明

As you see, it's not easy to read. How can I change that font?

try this :

from __future__ import unicode_literals
import hazm
import json
import requests
import urllib
from translate import translator

text = "persian"

quoted = urllib.quote_plus(text.encode("utf-8"))
print translator('fa','en',quoted)

Go to File > Settings > Editor > Color Scheme > Console Font.

Tick "Use console font instead of the default" Choose font and size as you like.

Also follow: Set the font size in pycharm's python console or terminal

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM