用pygame模块编写一段表白代码
时间: 2024-02-08 08:34:27 浏览: 69
好的,以下是一段用pygame模块编写的表白代码:
```python
import pygame
# 初始化pygame
pygame.init()
# 设置窗口大小和标题
screen = pygame.display.set_mode((500, 500))
pygame.display.set_caption("表白")
# 设置字体样式和大小
font = pygame.font.SysFont("Arial", 50)
# 设置文本内容和颜色
text = font.render("我喜欢你", True, (255, 0, 0))
# 获取文本的矩形框,并居中显示
text_rect = text.get_rect(center=(250, 250))
# 游戏循环
running = True
while running:
# 事件循环
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 填充背景色
screen.fill((255, 255, 255))
# 在窗口中心绘制文本
screen.blit(text, text_rect)
# 刷新屏幕
pygame.display.flip()
# 退出pygame
pygame.quit()
```
这段代码会在窗口中央显示红色的“我喜欢你”字样,可以用来表白。
阅读全文