我使用Microsoft Visual Studio 2015编写并运行脚本,在代码运行之前显示一条消息,显示“项目中的一个或多个文件包含错误。无论如何要启动吗?”
这里是剧本:
import pygame
pygame.init()
# Colors
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
RED = (255, 0, 0)
# window screen
size = (700, 500)
screen = pygame.display.set_mode(size)
pygame.display.set_caption("My first game")
running = True
clock = pygame.time.Clock()
# Game loop
while running:
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
screen.fill(RED)
pygame.display.flip()
clock.tick(60)
pygame.quit()
我有Python 3.x.尽管没有任何错误,为什么会出现此消息?
编辑:我已经通过pip安装了pygame包。