鱼C论坛

 找回密码
 立即注册
查看: 2174|回复: 4

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

[复制链接]
发表于 2021-2-4 18:26:26 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
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()
最佳答案
2021-2-4 18:27:46
基本上都是缩进错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-2-4 18:27:46 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
基本上都是缩进错误
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-2-4 18:45:17 | 显示全部楼层
wp231957 发表于 2021-2-4 18:27
基本上都是缩进错误

出现'module' object is not callable这个对象不可用是哪里的错误呀
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-2-4 19:06:00 From FishC Mobile | 显示全部楼层
1379530315 发表于 2021-2-4 18:45
出现'module' object is not callable这个对象不可用是哪里的错误呀

好像是模块的方法使用有问题,具体看到底是哪条代码出错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 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
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-8 09:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表