使Python IDLE也变得高颜值

来源:互联网 发布:国乒集体退赛 知乎 编辑:程序博客网 时间:2024/05/20 06:22
初学Python,大家应该都是用Python自带的IDLE了,我们可以让他颜值高一些,这样敲出的代码就赏心悦目,比如像下面这样:


我们首先要找到名为config-highlight.cfg的文件,文件的路径:在Win 7/win8/win10下路径为:C:\Users\<用户名>\.idlerc\
对于Windows可以直接打开开始运行(win+R键)
%USERPROFILE%\.idlerc\
找到这个名叫config-highlight.cfg文件后,接下来就需要编辑它了,如果找不到,就创建一个config-highlight.cfg
在Windows系统下:
notepad %USERPROFILE%\.idlerc\config-highlight.cfg
好了,现在我们应该已经打开config-highlight.cfg这个文件并做好编辑的准备了,比如说我可以通过修改这个文件为下面内容来实现两个名为Obsidian和tango的代码高亮主题:
[Obsidian]definition-foreground = #678CB1error-foreground = #FF0000string-background = #293134keyword-foreground = #93C763normal-foreground = #E0E2E4comment-background = #293134hit-foreground = #E0E2E4builtin-background = #293134stdout-foreground = #678CB1cursor-foreground = #E0E2E4break-background = #293134comment-foreground = #66747Bhilite-background = #2F393Chilite-foreground = #E0E2E4definition-background = #293134stderr-background = #293134hit-background = #000000console-foreground = #E0E2E4normal-background = #293134builtin-foreground = #E0E2E4stdout-background = #293134console-background = #293134stderr-foreground = #FB0000keyword-background = #293134string-foreground = #EC7600break-foreground = #E0E2E4error-background = #293134 [tango]definition-foreground = #fce94ferror-foreground = #fa8072string-background = #2e3436keyword-foreground = #8cc4ffnormal-foreground = #ffffffcomment-background = #2e3436hit-foreground = #ffffffbreak-foreground = #000000builtin-background = #2e3436stdout-foreground = #eeeeeccursor-foreground = #fce94fhit-background = #2e3436comment-foreground = #73d216hilite-background = #edd400definition-background = #2e3436stderr-background = #2e3436break-background = #2e3436console-foreground = #87ceebnormal-background = #2e3436builtin-foreground = #ad7fa8stdout-background = #2e3436console-background = #2e3436stderr-foreground = #ff3e40keyword-background = #2e3436string-foreground = #e9b96ehilite-foreground = #2e3436error-background = #2e3436

对文档进行保存,然后关闭。
接着还需要在Python IDLE中选择主题,重启IDLE,选择菜单上Options – Configure IDLE…



选择Highlighting选项卡,然后Select选择a Custom Theme,如下图所示,选择刚才配置的两个主题之一,建议选择tango

完成配置后点击Apply或者OK,自己观察效果如何。在Highlighting选项卡旁边有个Fonts/Tabs选项卡,可以用来配置字体和缩进宽度的:


做完这些,重启Python IDLE,就可以提现效果了。
1 0