gpt4 book ai didi

python - 如何在Pygame中动态显示?

转载 作者:太空宇宙 更新时间:2023-11-03 23:58:50 26 4
gpt4 key购买 nike

<分区>

我可以在显示器上显示数字“1”。现在,我的目标是显示数字 1...4。也就是说先显示“1”,然后显示1个“2”,等等。如何解决这个问题?

这是我的代码:

import pygame
import time

pygame.init()
screen = pygame.display.set_mode((640, 480))
clock = pygame.time.Clock()
done = False

font = pygame.font.SysFont("comicsansms", 72)
text = font.render("1", True, (0, 128, 0))

while not done:
for event in pygame.event.get():
if event.type == pygame.QUIT:
done = True
if event.type == pygame.KEYDOWN and event.key == pygame.K_ESCAPE:
done = True

screen.fill((255, 255, 255))
screen.blit(text,
(320 - text.get_width() // 2, 240 - text.get_height() // 2))

pygame.display.flip()
clock.tick(60)

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com