真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python極簡(jiǎn)教程(二)編碼工具

Python 的編碼工具很多。目前最流行的是 pycharm,關(guān)于 pycharm 的安裝使用請(qǐng)參考 PyCharm安裝使用教程。

成都創(chuàng)新互聯(lián)公司堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都網(wǎng)站制作、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的延吉網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!

而學(xué)習(xí)過(guò)程中,我覺(jué)得最好用的,還是 Python 自帶的練習(xí)工具 IDLE。這款工具不用安裝,裝好 Python 后就有了。

這款工具最大的好處,就是變量的值、函數(shù)返回值都可以直接展示,不用打印即可查看。這極大了方便學(xué)習(xí)過(guò)程中,需要不斷的查看各種語(yǔ)句的執(zhí)行結(jié)果。

基本使用

打開(kāi)工具,Windows 開(kāi)始菜單 > 所有程序 > Python 3.6 > IDLE (Python 3.6 32-bit)
Python 極簡(jiǎn)教程(二)編碼工具
打開(kāi)后,界面如下:
Python 極簡(jiǎn)教程(二)編碼工具

在練習(xí)過(guò)程中,如果需要?jiǎng)?chuàng)建 Python 文件,也可以通過(guò) IDLE 操作:
打開(kāi)File > New File 或者使用快捷鍵Ctrl + N
Python 極簡(jiǎn)教程(二)編碼工具
在新建的窗口中輸入 Python 代碼
Python 極簡(jiǎn)教程(二)編碼工具
然后可以運(yùn)行,運(yùn)行方式可以直接按 F5或者點(diǎn)擊菜單欄中的Run > Run Module
Python 極簡(jiǎn)教程(二)編碼工具
運(yùn)行后會(huì)彈出要求保存的提示
Python 極簡(jiǎn)教程(二)編碼工具
點(diǎn)擊確定后,保存到你存放練習(xí)筆記的目錄即可。
Python 極簡(jiǎn)教程(二)編碼工具
運(yùn)行后,會(huì)回到 Python IDLE 的 shell 界面,上面顯示了你當(dāng)前運(yùn)行的文件名稱。你可以接下來(lái)在光標(biāo)位置繼續(xù)操作。
Python 極簡(jiǎn)教程(二)編碼工具

修改 IDLE 主題

當(dāng)然我現(xiàn)在用的主題修改過(guò),修改主題的方法如下:
打開(kāi)菜單 Options > Config IDLE
Python 極簡(jiǎn)教程(二)編碼工具

  1. 修改字體
    個(gè)人比較喜歡 DejaVu Sans Mono 這種字體,自動(dòng)第一次用 ubuntu 系統(tǒng)就喜歡上了這種類似的字體??筛鶕?jù)喜好選擇對(duì)應(yīng)的字體,右邊展示的是當(dāng)前字體各種文字的顯示樣式。
    Python 極簡(jiǎn)教程(二)編碼工具
  2. 修改主題樣式
    需要找到 config-highlight.cfg 文件,直接使用 windows鍵 + R 打開(kāi)“運(yùn)行”,在運(yùn)行窗口輸入(拷貝粘貼進(jìn)去即可):
    notepad %USERPROFILE%\.idlerc\config-highlight.cfg

    這句命令會(huì)用記事本打開(kāi) config-highlight.cfg 文件。
    如果沒(méi)有這個(gè)文件,則使用如下命令:

    %USERPROFILE%\.idlerc\

    該命令會(huì)進(jìn)入一個(gè)文件夾,在該文件夾下新建一個(gè)文本文件,把名字修改為 config-highlight.cfg,右鍵使用記事本打開(kāi)。

然后將下面的這段內(nèi)容全部拷貝粘貼進(jìn)去

[Obsidian]
definition-foreground = #678CB1
error-foreground = #FF0000
string-background = #293134
keyword-foreground = #93C763
normal-foreground = #E0E2E4
comment-background = #293134
hit-foreground = #E0E2E4
builtin-background = #293134
stdout-foreground = #678CB1
cursor-foreground = #E0E2E4
break-background = #293134
comment-foreground = #66747B
hilite-background = #2F393C
hilite-foreground = #E0E2E4
definition-background = #293134
stderr-background = #293134
hit-background = #000000
console-foreground = #E0E2E4
normal-background = #293134
builtin-foreground = #dd17e8
stdout-background = #293134
console-background = #293134
stderr-foreground = #FB0000
keyword-background = #293134
string-foreground = #EC7600
break-foreground = #E0E2E4
error-background = #293134

[tango]
definition-foreground = #fce94f
error-foreground = #fa8072
string-background = #2e3436
keyword-foreground = #8cc4ff
normal-foreground = #ffffff
comment-background = #2e3436
hit-foreground = #ffffff
break-foreground = #000000
builtin-background = #2e3436
stdout-foreground = #eeeeec
cursor-foreground = #fce94f
hit-background = #2e3436
comment-foreground = #73d216
hilite-background = #edd400
definition-background = #2e3436
stderr-background = #2e3436
break-background = #2e3436
console-foreground = #87ceeb
normal-background = #2e3436
builtin-foreground = #ad7fa8
stdout-background = #2e3436
console-background = #2e3436
stderr-foreground = #ff3e40
keyword-background = #2e3436
string-foreground = #e9b96e
hilite-foreground = #2e3436
error-background = #2e3436

如下圖:
Python 極簡(jiǎn)教程(二)編碼工具
拷貝進(jìn)去后,保存并關(guān)閉。

關(guān)閉 IDLE 重新打開(kāi),進(jìn)入剛才的設(shè)置界面,點(diǎn)擊 Highlights,選擇剛才配置的主題 Obsidiantango。
Python 極簡(jiǎn)教程(二)編碼工具

然后愉快的編碼吧,好看的字體和配色也會(huì)讓自己學(xué)習(xí)的興趣增加不少!

其余的編碼工具包括 Sublime text、Eclipse 等,請(qǐng)參考其他網(wǎng)上教程。

下一篇 數(shù)據(jù)類型


文章名稱:Python極簡(jiǎn)教程(二)編碼工具
標(biāo)題路徑:http://weahome.cn/article/gisdpd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部