PyCharm没有打开Pygame窗口

时间:2019-11-27 08:31:00

标签: python pygame

当我在PyCharm中运行此代码时,它不会打开一个窗口。 python启动器可以运行,但不能运行pygame。当我将其作为.py文件运行时,效果很好。

import pygame
background_colour = (255,255,255)
(width, height) = (300, 200)
screen = pygame.display.set_mode((width, height))
pygame.display.set_caption('Tutorial 1')
screen.fill(background_colour)
pygame.display.flip()
running = True
while running:
  for event in pygame.event.get():
    if event.type == pygame.QUIT:
      running = False

0 个答案:

没有答案