为什么pygame的提示名称错误怎么办NameError:name''is not defined?
发布网友
发布时间:2024-05-07 23:00
我来回答
共2个回答
热心网友
时间:2024-05-10 23:42
稍改了下,这代码是可以运行的
import pygame
pygame.init()
pygame.display.set_caption("python")
pygame.display.set_mode((500, 500))
white = (255, 255, 255)
surface = pygame.display.set_mode((400, 300))
pygame.draw.rect(surface, white, pygame.Rect(255, 255, 10, 10))
pygame.display.flip()
input()
热心网友
时间:2024-05-10 23:42
pygame pygame.init()pygame.display.set_caption("python")pygame.display.set_mode((500, 500))white = (255, 255, 255)surface = pygame.display.set_mode((400, 300))pyga...