準備工作—Python學習筆記

如何在電腦上安裝 python ,這個根據電腦系統是 Windows、macOS 還是 Linux 會有不同,都是很基礎的東西,直接上網搜索一下就好,這裡就不說了。

我的是 macOS 系統,安裝了 python3.6,在終端執行 python3 命令打開 python 解釋器:

GZ:~ GZ$ python3 #這是打開 python 解釋器Python 3.6.4 (v3.6.4:d48ecebad5, Dec 18 2017, 21:07:28) [GCC 4.2.1 (Apple Inc. build 5666) (dot 3)] on darwinType "help", "copyright", "credits" or "license" for more information.

然後就可以執行 python 代碼了,以下兩行是執行 python 代碼,列印 『hello world』 這句話,顯示在終端裡面:

>>> print(hello world) hello world

要關閉 python 編輯器,快捷鍵是 ctrl + d 或者執行命令 exit()

>>> ^D #快捷鍵 ctrl + d 退出 python 解釋器GZ:~ GZ$ #退出完成

另外,你還需要一個編輯器來寫真正的代碼,就像寫文章需要打開電腦上的Word一樣。編輯器有很多,我個人喜歡 atom,你也可以用 sublime,或者其他。

用編輯器來列印 『hello world』 這句話,顯示在終端裡面,怎麼做呢?

通過編輯器新建一個文件夾比如叫 python_project,然後在文件夾中新建一個文件比如叫 test.py 注意以 .py 結尾,這樣編輯器就知道這是個 python 程序,應該用 python 解釋器來運行它。

然後在 test.py 中寫入:

print(hello world)

終端的路徑進入 python_project 文件夾中,然後運行 test.py 文件:

GZ:code GZ$ cd python_project #進入該文件夾GZ:python_project GZ$ python3 test.py #執行文件hello world #列印出了這句話GZ:python_project GZ$

初學筆記難免有謬誤,歡迎您指出,感謝。

歡迎關注我的微信號「我想會編程」,微信號「ZackGuo510」。

推薦閱讀:

學習永遠不晚,只需做到更好
[8] 結構體
[7] 循環的模式
學習編程太枯燥?12款助你學編程的免費遊戲
剛好的可能就是最好的

TAG:Python入門 | Python | 編程學習 |