iT邦幫忙

2024 iThome 鐵人賽

DAY 29
0
自我挑戰組

從零開始學Python系列 第 29

[Day29] Python-Pygame

  • 分享至 

  • xImage
  •  
  1. 安裝pygame
pip install pygame
  1. import
import pygame as pg
from pygame.locals import *
  1. 初始化
pg.init()
  1. 設定視窗
width, height = 600, 400
screen = pg.display.set_mode((width, height))
pg.display.set_caption('My Game')
  1. 設定視窗持續開啟
running = True
while running:
    for event in pg.event.get():
        if event.type == QUIT:
            running = False

pg.quit()
  1. 設定按關閉鈕即可關掉視窗
pg.quit()

https://ithelp.ithome.com.tw/upload/images/20240919/201688118Aj22RWmq5.png


上一篇
[Day28] Python應用-Combine PDFs
下一篇
[Day30] Python-Pygame (lunch choice spinner)
系列文
從零開始學Python30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言