iT邦幫忙

0

「Python」Day02-今日總結-計算機三大核心,操作系統,程式語言分類,Python解釋器,Mac、Windows電腦安裝Python解釋器

  • 分享至 

  • xImage
  •  

今日內容概要

  • 計算機三大核心硬體
  • 操作系統
  • 程式語言的分類
  • python解釋器
  • 運行python程序的三種方式
  • mac、windows電腦安裝python解釋器(多版本)

計算機三大核心硬體

https://ithelp.ithome.com.tw/upload/images/20230909/20132481wcTkYYNdRp.png

計算機三大核心硬體:
1.CPU
2.記憶體
3.硬碟

為什麼不直接省略記憶體,跟硬碟溝通就好?
1.記憶體的容量一般比硬碟小的多得多

2.CPU運行速度快,硬碟運行速度慢,記憶體搭配CPU運作,提升CPU運行效率 

3.只要是運行的程序 產生的數據第一時間肯定在記憶體,突然斷電數據會立刻遺失

操作系統

https://ithelp.ithome.com.tw/upload/images/20230909/20132481mxrUPlFKDC.png

控制 協調 管理計算機各個硬體的工作

PC端常見操作系統: 
	windows、macOS、linux
行動端常見操作系統: 
	Android、IOS、

程式語言的分類

1.編譯型語言		C++、Java、Golang
	類似於GOOGLE翻譯(一次性翻譯) 翻譯之後可以反覆使用翻譯的結果
 		優勢: 一次翻譯可以反覆使用 執行效率高 速度快
  		劣勢: 當程序中頻繁出現bug 那麼需要反覆編譯 
2.解釋型語言    python
	類似於翻譯官(說一句翻一句) 
    	優勢: 有bug和沒有bug執行效率幾乎一樣
    	劣勢: 速度沒有編譯型語言快
'''要想讓計算機能夠識別並運行高級語言需要對應類型的翻譯官'''

python解釋器

1.python發展方向
	web方向、自動化運維、自動化測試、自動化辦公、網路爬蟲、金融量化、人工智慧、機器學習、數據分析
2.python解釋器
	1.歷史
    	荷蘭的Guido van Rossum因為當時的程式語言存在缺陷,聖誕節期間,他決定創建一種新的語言。一種更易於使用又功能強大的語言。
	2.版本
    	版本其實是軟體更新疊代的紀錄
	  	python1.X:初期版本 幾乎不用
    	python2.X:python2.7(2020年就已經不再維護更新)
	    python3.X:python3.6  python3.8   python3.10+
	    ps:學習python語法 對版本的區別差異不大
  		目前常用:python2.7	python3.6	python3.8
 	3.下載
    	官網:https://www.python.org/downloads/windows/
        ps:蘋果電腦macOS、linux系統(centos7、rhel7...等)自帶python2.7 
 	4.安裝(如本頁後面:mac、windows電腦安裝python解釋器(多版本))
    	自訂安裝 路徑盡量簡單一些
    	示範:windows電腦、mac電腦 
  	5.使用
    	1.windows+r
	    2.輸入cmd回車
    	3.切換盤符 C:
    	4.切換目錄 cd python38
   		5.運行解釋器 python
    	6.退出解釋器 exit()
    	7.退到上一層目錄 cd ..	

運行python程序的三種方式

1.cmd直接編寫運行
	適用於較短 臨時執行的代碼
2.解釋器命令運行
	可以編寫較長的代碼 並且可以長久保存
3.利用IDE工具編寫並運行
	IDE開發者工具:自動提示 攜帶各種功能插件 編寫程式碼效率更高更快
	1.sublime
 	2.vscode
 	3.pycharm
  1. cmd直接編寫運行
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481lI5P9KVn8f.png
  2. 解釋器命令運行
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481P2bzxv2zux.png
  3. 利用IDE工具編寫並運行(pycharm 2021.3.3)
    https://ithelp.ithome.com.tw/upload/images/20230909/201324813V3tZ5XD7h.png
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481tkOH5HuRSU.png

mac、windows電腦安裝python解釋器(多版本)

mac電腦安裝python解釋器(多版本)

官網Downloads網址:https://www.python.org/downloads/macos/

1. Downloads
2. 找到要安裝的版本
3. 全程點繼續,完成安裝
4. 打開termimel,可以看到使用者環境變數已自動加上python3.9路徑
5. 直接可以使用
6. 要使用多版本共存,同前面1~3步驟,到官網下載並安裝版本即可,我這裡示範3.8.6本版的
  1. Downloads
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481NrucsnXvCT.png

  2. 找到要安裝的版本,因為我的電腦是m1晶片,所以就不能選擇intel-only,選擇universal2
    https://ithelp.ithome.com.tw/upload/images/20230909/201324818ZMSJoqCbc.png

  3. 全程點繼續,完成安裝
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481ClCTxpiWOl.png

  4. 打開termimel,可以看到使用者環境變數已自動加上python3.9路徑
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481m940oX70gl.png

  5. 直接可以使用
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481Qwkn2y4DsL.png

  6. 要使用多版本共存,同前面1~3步驟,到官網下載並安裝版本即可,我這裡示範3.8.6本版的
    可以看到使用者環境變數也已自動加上python3.8路徑

https://ithelp.ithome.com.tw/upload/images/20230909/20132481jEOpntc1Pk.png

https://ithelp.ithome.com.tw/upload/images/20230909/20132481AKWIW4ifts.png

windows電腦安裝python解釋器(多版本)

官網Downloads網址:https://www.python.org/downloads/windows/

1. Downloads
2. 找到要安裝的版本
3. 注意,點選Customize installation
4. 打開termimel,到安裝目錄下
5. 可以看到有一個python.exe檔案,執行即可使用
6. 要使用多版本共存,同前面1~3步驟,到官網下載並安裝版本即可
7. 每次都要到安裝目錄下,才能使用python,故將路徑直接加入環境變數。
	7.1 將各版本目錄下python.exe再複製出來,並命名為版本號
	7.2 檔案總管->本機右鍵->內容
	7.3 進階系統設定->環境變數
	7.4 找到系統變數->path點兩下
	7.5 新增C:\python38、C:\python38\Scripts、C:\python39、C:\python39\Scripts,確認
	7.6 開啟terminel測試
  1. Downloads
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481sFLbr8ltre.png

  2. 找到要安裝的版本,因為我的電腦是w11 64bit,所以選擇Windows installer (64-bit)
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481OtXhH2qgav.png

  3. 注意,點選Customize installation,自訂安裝路徑,不然原安裝路徑名稱非常長,以後要找,不易
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481lztaexaobW.png

我選擇在C:\,創建一個python39資料夾,將python3.9安裝在此位置
https://ithelp.ithome.com.tw/upload/images/20230909/20132481JEeVDhgK1d.png
https://ithelp.ithome.com.tw/upload/images/20230909/20132481QwjMc5P3LV.png

https://ithelp.ithome.com.tw/upload/images/20230909/20132481a5MBkRSUA9.png

  1. 打開termimel,到安裝目錄下
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481r0BIOc09dj.png

  2. 可以看到有一個python.exe檔案,執行即可使用
    https://ithelp.ithome.com.tw/upload/images/20230909/20132481OWvpsFMMnN.png

  3. 要使用多版本共存,同前面1~3步驟,到官網下載並安裝版本即可,我這裡示範3.8.6、本版的
    我選擇在C:\,創建一個python38資料夾,將python3.8安裝在此位置

https://ithelp.ithome.com.tw/upload/images/20230909/20132481Wa5rXo9mtw.png

  1. 每次都要到安裝目錄下,才能使用python,故將路徑直接加入環境變數。
7.1 將各版本目錄下python.exe再複製出來,並命名為版本號
7.2 檔案總管->本機右鍵->內容
7.3 進階系統設定->環境變數
7.4 找到系統變數->path點兩下
7.5 新增C:\python38、C:\python38\Scripts、C:\python39、C:\python39\Scripts,確認
7.6 開啟terminel測試

7.1 將各版本目錄下python.exe再複製出來,並命名為版本號
https://ithelp.ithome.com.tw/upload/images/20230909/20132481wyU3kgMGnD.png

https://ithelp.ithome.com.tw/upload/images/20230909/20132481hJH78QQhjm.png

7.2 檔案總管->本機右鍵->內容
https://ithelp.ithome.com.tw/upload/images/20230909/20132481K8SufI4nnZ.png

7.3 進階系統設定->環境變數
https://ithelp.ithome.com.tw/upload/images/20230909/20132481hZrWsR9wBu.png

https://ithelp.ithome.com.tw/upload/images/20230909/20132481BZ2nc5pzhB.png
7.4 找到系統變數->path點兩下
https://ithelp.ithome.com.tw/upload/images/20230909/20132481mp8oCoqpDk.png

7.5 新增C:\python38、C:\python38\Scripts、C:\python39、C:\python39\Scripts,確認
https://ithelp.ithome.com.tw/upload/images/20230909/201324818C5vnW5egj.png

7.6 開啟terminel測試
https://ithelp.ithome.com.tw/upload/images/20230909/20132481HayFEFPEwW.png

YouTube教學影片

Yes

技術Blog

https://blog.goldfishbrain-fighting.com/2023/python-self-learning-day02/


圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言