pygame设置背景画布颜色为白色,为什么运行时一直是黑色?
代码如下:
import pygame,sys
pygame.init()#模块初始化,任何pygame程序均需要执行此句
screencaption=pygame.display.set_caption('hello world')#定义窗口的标题为'hello world'
screen=pygame.display.set_mode([640,480])#定义窗口大小为640*480
screen.fill([255,255,255])#用白色填充窗口
while True:
for eventin pygame.event.get():
if event.type==pygame.QUIT:
sys.exit()
pygame.draw.circle(screen,THECOLORS["red"],[100,100],30,0)
pygame.draw.circle(screen,[255,0,0],[100,100],30,0)
运行效果如下:
输入指令:python3 -m stest.py
效果:
图像求大佬告知
另外,已经安装了pygame,在terminal中运行文件时就可以出现如上弹出框,直接在代码中control+shift+R 快捷键运行时就提示:
Traceback (most recent call last):
File "/Users/zym/Desktop/untitled/stest.py", line 1, in <module>
import pygame,sys
ModuleNotFoundError: No module named 'pygame'
网友评论