https://www.pygame.org
时间: 2024-08-18 12:00:44 浏览: 79
python-pygame
Pygame是一个开源的游戏开发库,它允许开发者使用Python语言创建2D游戏和其他图形应用程序。官网链接:<https://www.pygame.org/>。以下是一个简单的Pygame示例,展示如何创建一个窗口并显示一些文本:
```python
import pygame
# 初始化pygame
pygame.init()
# 设置窗口大小
screen_width = 640
screen_height = 480
screen = pygame.display.set_mode((screen_width, screen_height))
# 渲染标题
pygame.display.set_caption("Hello, Pygame!")
# 主循环
running = True
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 更新屏幕(这里什么也不做)
screen.fill((0, 0, 0))
# 显示文本
font = pygame.font.SysFont(None, 48)
text = font.render("Welcome to Pygame!", True, (255, 255, 255))
screen.blit(text, (10, 10))
# 更新显示
pygame.display.flip()
# 关闭窗口
pygame.quit()
```
在这个示例中,我们首先导入pygame模块,设置窗口大小,然后在一个无限循环中监听用户的交互,如果用户点击关闭按钮,则退出程序。在循环内部,我们清空屏幕颜色并绘制欢迎信息。
阅读全文