關於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庫都有哪些Python
- 關於calc的踩坑
- 填坑-關於IIC通訊
- python-pygame學習筆記PythonGAM筆記
- Making Games with Python & Pygame 中文翻譯GAMPython
- 關於pythonPython
- 從Zero到Hero,一文掌握Python關鍵程式碼Python
- 關於jqGrid+mybatisplus遇到的坑MyBatis
- 關於 ulimit 的兩個天坑MIT
- 牆裂推薦!!學Python要避免哪些坑Python
- July 30-day13-Python中PygamePythonGAM
- python如何檢測pygame中的碰撞PythonGAM
- python:關於pipPython
- Go 語言關於 Type Assertions 的 坑Go
- python應用於哪些方面Python
- 關於python整合dlibPython
- python關於+=的陷阱Python
- 關於 Python 的 importPythonImport
- 聊聊關於資料庫表記錄刪除都有哪些解決方式資料庫
- 3.3.1 關於關閉資料庫資料庫
- 學Python要避免哪些坑,如何鞏固好基礎Python
- 關於performSelector:afterDelay:的一個坑及思考performSelector
- 關於 JS 陣列,物件 length 使用的坑JS陣列物件
- 關於SpringBoot結合mybatis後遇到的坑Spring BootMyBatis
- python常用的資料庫有哪些?Python資料庫
- 【學習分享篇】Python有哪些庫?Python
- python中pygame遊戲打包為exe檔案PythonGAM遊戲
- PYTHON筆記第十二章之pygamePython筆記GAM
- Python遊戲開發!Mac完美安裝pygamePython遊戲開發MacGAM
- 關於 iOS 中的庫iOS
- Python資料分析常用庫有哪些?Python學習!Python
- 你知道python常見的庫有哪些嗎?五大python庫Python
- 關於Python的迭代操作Python
- 記一次小坑--關於window.open()
- 避坑指南:關於SPDK問題分析過程
- 記一次小坑–關於window.open()
- 關於passive event listener的一次踩坑
- vue陣列操作遇到坑-關於陣列操作Vue陣列