當你想進入Python的世界,首先第一步,就是得在你的電腦安裝Python
由於學校分配到的電腦OS是Windows
接下來就是要講怎在Windows上安裝Python
打開命令提示字元(cmd) 敲入
python -V
若出現版本編號表示安裝成功
接下來就是要處理text editor的部分,我使用sublime text
寫一個程式來測試看看吧!
開啟sublime text 並創建一個 hello.py
print ("hello world")
切換至命令提示字元(cmd)
python hello.py
有看到傳說中的hello world嗎?