PIXAR = pygame.PixelArray(SCREEN)
PIXAR[110][0] = WHITE
当我将其添加到我的代码中时,我得到:
Process finished with exit code 139 (interrupted by signal 11: SIGSEGV)
后面是一条操作系统消息,python意外退出。如果我删除它:
Process finished with exit code 0
我似乎无法找到解决方案; 1.9.2手册没有解释这一点。如果我在阅读中遗漏了它,有人可以指出我正确的方向吗?
答案 0 :(得分:0)
我认为PIXAR
是一个二维数组。应该使用PIXAR[110,0]
代替PIXAR[110][0]
来访问它。