關於Python庫 pygame zero(pgzero)哪些坑

yaotaoism發表於2020-12-21

關於pygame zero哪些坑

先吐糟一下

為了教孩子玩玩python,也為了讓孩子少玩點手機,既然要玩就玩點有意義的,發現了pygame zero這個庫,比較好玩,但是隨之而來的是哪些坑。。。

哪些坑?

  1. 安裝的坑 ,安裝的時候,正確的庫名是pgzero,很多所謂教程都沒說清楚,搜尋也很少有內容要不全英文。。。;
  2. 備註的坑 請看這兩段程式碼有和不同。。。
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()

執行結果慘不忍睹。。。如下圖:
在這裡插入圖片描述

相關文章