1

我安装在 Nexus 5 QPython 上并尝试运行此代码:

import pygame

size = width, height = 400, 400

window = pygame.display.set_mode(size)
pygame.display.set_caption('hello, pygame!')

screen = pygame.Surface((400,400))

done = True
while done:
  for e in pygame.event.get():
    if e.type == pygame.QUIT:
      done = False
  screen.fill((0,255,0))

  window.blit(screen, (0,0))
  pygame.display.flip()

运行后,我看到了这个: 在此处输入图像描述

但是,如果我将此代码冲洗到 PC 上,那没关系

4

1 回答 1

0

QPython 2.4.2 需要添加

#-*-coding:utf8;-*-
#qpy:pygame

作为包含 pygame 的 qpython 版本的第一行和第二行,如果问题仍然存在,请尝试添加您的 qpython 版本和解释器版本

于 2018-12-04T09:52:16.153 回答