为什么会发生此错误
import pygame
pygame.init()
screen=pygame.display.set_mode((600,600))
while 1:
hi=pygame.key.get_pressed()
if hi[K_a]:
print('done!')
答案 0 :(得分:0)
你需要做
if hi[pygame.K_a]:
或
from pygame.locals import *
if hi[K_a]:
否则将无法定义K_a
。