我一直在努力让它在程序已经启动时按空格键播放我的歌曲。它打开了,然后我在光标上看到了加载动画(当光标在程序上时)。程序崩溃了。
`import pygame, sys
from pygame.locals import *
bf = 'bg.jpg'
pygame.init()
screen = pygame.display.set_mode((800, 600))
background = pygame.image.load(bf) .convert()
screen.blit(background, (0,0))
pygame.display.update()
pygame.display.set_caption('Letters')
keys=pygame.key.get_pressed()
while True:
if keys[pygame.K_SPACE]:
pygame.mixer.music.load('ht.mp3')
pygame.mixer.music.play(loops=-1, start=0)
running = True
while running:
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
请像我小时候一样解释一下。(我是pygame的新手。)