1379530315 发表于 2021-2-4 18:26:26

求助!!预期为语句结束错误怎么解决啊

import pygame
import sys

pygame.init()

size = width, height = 600, 400
screen = pygame.display.set_mode(size)
pygame.display.set_caption("二次见面")
bg = (0,0,0)

font = pygame.Font(None, 20)
line_height = font.get_linesize()
position = 0

screen.fill(bg)

while True:
    for event in pygame.event.get():
      if event.type == pygame.QUIT:
            sys.exit()

      screen.blit(font.render(str(event), True, (0, 255, 0), (0,position))
      position += line_height

      if position > height:
            position = 0
            screen.fill(bg)

    pygame.display.flip()

wp231957 发表于 2021-2-4 18:27:46

基本上都是缩进错误

1379530315 发表于 2021-2-4 18:45:17

wp231957 发表于 2021-2-4 18:27
基本上都是缩进错误

出现'module' object is not callable这个对象不可用是哪里的错误呀

wp231957 发表于 2021-2-4 19:06:00

1379530315 发表于 2021-2-4 18:45
出现'module' object is not callable这个对象不可用是哪里的错误呀

好像是模块的方法使用有问题,具体看到底是哪条代码出错

1379530315 发表于 2021-2-4 19:21:53

1379530315 发表于 2021-2-4 18:45
出现'module' object is not callable这个对象不可用是哪里的错误呀

整个错误就是这个了
pygame 1.9.6
Hello from the pygame community. https://www.pygame.org/contribute.html
Fatal Python error: (pygame parachute) Segmentation Fault
Traceback (most recent call last):
File "C:\Users\Administrator\AppData\Roaming\Python\Python37\site-packages\pygame\pkgdata.py", line 50, in getResource
    if resource_exists(pkgname, identifier):
File "D:\python\Python\Python37\lib\site-packages\pkg_resources\__init__.py", line 1135, in resource_exists
    return get_provider(package_or_requirement).has_resource(resource_name)
File "D:\python\Python\Python37\lib\site-packages\pkg_resources\__init__.py", line 1406, in has_resource
    return self._has(self._fn(self.module_path, resource_name))
File "D:\python\Python\Python37\lib\site-packages\pkg_resources\__init__.py", line 1475, in _has
    "Can't perform this operation for unregistered loader type"
NotImplementedError: Can't perform this operation for unregistered loader type
页: [1]
查看完整版本: 求助!!预期为语句结束错误怎么解决啊