python程式設計:從入門到實踐
本文主要記錄在實現書中專案時所遇到的問題及相應解決辦法
1.p208:syntaxerror: non-utf-8 code
中文注釋導致的.py檔案出現編碼錯誤,在有中文注釋的檔案開頭加入
# coding=gbk
2.p208:pygame importerror: dll load failed: 找不到指定的模組
在編譯的過程中出現
file "c:\python\lib\site-packages\pygame\__init__.py", line , in from pygame.base import *
importerror: dll load failed: the specified module could not be found.
原因:安裝的pygame和當前的python版本不一致所致
在命令提示行中輸入
pip install pygame
顯示安裝失敗:command "python setup.py egg_info" failed with error code 1
在命令列輸入
pip install d:\pygame‑1.9.4.dev0‑cp37‑cp37m‑win_amd64.whl
python
import pygame
pygame.ver
後面三行為測試
3.命令列中進入python和退出
進入python
退出1:輸入exit(),回車
2:輸入quit(),回車
3:輸入ctrl+z,回車
Python 程式設計 從入門到實踐
1.官網安裝 3.環境配置 務必選中核取方塊add python to path 4.檢視 啟動python版本的命令 python 執行 print hello python world 5.終端執行x.py檔案 python x.py 7.檢視當前目錄中的所有檔案的命令 dir windows系...
Python程式設計從入門到實踐 基礎入門
python程式設計從入門到實踐 基礎入門 1 python中的變數 2 python首字母大寫使用title 方法,全部大寫upper 方法,全部小寫lower 方法 3 python中字串拼接使用 號 4 python中刪除字串的空格 刪除末尾空格的rstrip 刪除開頭空格的lstrip 刪除...
Python程式設計 從入門到實踐 1
內容總結自 python程式設計 從入門到實踐 安裝python3 安裝文字編輯器sublime text並配置python3環境 安裝sublime text tools new build system 將 untitled.sublime build 文件中的所有內容刪除,輸入以下內容 注意,...