非常感谢你的帮助。它现在已经完全工作了。在
这已经是三天的安装和卸载,阅读了无数的网页,并试图保持清醒的工作后,它哈哈!在
我想编程的痕迹和错误:)
哪个安装了Pygame 1.9.2a0版本
我按照建议将代码从update()改为flip()
我还用了pygame.event.get在while循环中
pygame窗口不会像以前那样崩溃。在
我已经添加了预算脚本,以便其他人可以受益import pygame, sys
running = True
deepblue = (26,0,255)
mintcream = (254,255,250)
pygame.init()
size = (500,500)
surface = pygame.display.set_mode(size)
surface.fill(deepblue)
position = (250,250)
radius = 50
linewidth = 2
pygame.draw.circle(surface, mintcream, position, radius, linewidth)
pygame.display.flip()
while running:
event = pygame.event.wait()
if event.type == pygame.QUIT:
running = False
pygame.quit()