關於Python庫 pygame zero(pgzero)哪些坑
先吐糟一下
為了教孩子玩玩python,也為了讓孩子少玩點手機,既然要玩就玩點有意義的,發現了pygame zero這個庫,比較好玩,但是隨之而來的是哪些坑。。。
哪些坑?
- 安裝的坑 ,安裝的時候,正確的庫名是pgzero,很多所謂教程都沒說清楚,搜尋也很少有內容要不全英文。。。;
- 備註的坑 請看這兩段程式碼有和不同。。。
import pgzrun
y = 100
def draw():
screen.fill('white')
screen.draw.filled_circle((400,y),30,'red')
def update():
global y
y = y + 1
pgzrun.go()
執行結果正常,如下圖:
=以下是第二段程式碼=====
import pgzrun
y = 100
def draw():
# screen.fill('white')
screen.draw.filled_circle((400,y),30,'red')
def update():
global y
y = y + 1
pgzrun.go()
執行結果慘不忍睹。。。如下圖:
相關文章
- 【那些年跳的坑】python 3 關於requests庫的 text / content /jsonPythonJSON
- 關於DDD的Repository倉庫需要哪些方法?
- 關於calc的踩坑
- Python庫都有哪些Python
- 填坑-關於IIC通訊
- 關於/dev/null和/dev/zero兩個檔案裝置devNull
- 牆裂推薦!!學Python要避免哪些坑Python
- 關於Gson和FastJson的坑ASTJSON
- 關於Autolayout製作動畫的坑動畫
- 關於 ulimit 的兩個天坑MIT
- 從Zero到Hero,一文掌握Python關鍵程式碼Python
- 關於pythonPython
- python-pygame學習筆記PythonGAM筆記
- Go 語言關於 Type Assertions 的 坑Go
- android關於LinearLayout的坑Android
- 關於js的冒泡--新手踩坑案例JS
- SQL 語句中關於 NULL 的那些坑SQLNull
- python應用於哪些方面Python
- python:關於pipPython
- python如何檢測pygame中的碰撞PythonGAM
- Making Games with Python & Pygame 中文翻譯GAMPython
- 聊聊關於資料庫表記錄刪除都有哪些解決方式資料庫
- 學Python要避免哪些坑,如何鞏固好基礎Python
- 關於資源庫
- 關於 JS 陣列,物件 length 使用的坑JS陣列物件
- 關於jqGrid+mybatisplus遇到的坑MyBatis
- 關於dispatch_once的坑及注意點
- 關於ThreadLocal變數的一個坑thread變數
- 3.3.1 關於關閉資料庫資料庫
- python中pygame遊戲打包為exe檔案PythonGAM遊戲
- July 30-day13-Python中PygamePythonGAM
- 為Python 3.5及以上安裝Pygame模組PythonGAM
- python常用的資料庫有哪些?Python資料庫
- 【學習分享篇】Python有哪些庫?Python
- python關於+=的陷阱Python
- 關於 Python 的 importPythonImport
- Python--關於dictPython
- Python--關於setPython