鱼C论坛

 找回密码
 立即注册
查看: 2908|回复: 1

[技术交流] pygame库未初始化

[复制链接]
发表于 2021-4-20 03:53:20 | 显示全部楼层 |阅读模式
10鱼币
错误日志
E:\pychf\Scripts\python.exe E:/pychf/测试代码/game.py
pygame 2.0.1 (SDL 2.0.14, Python 3.9.4)
Hello from the pygame community. https://www.pygame.org/contribute.html
True
Traceback (most recent call last):
  File "E:\pychf\测试代码\game.py", line 33, in <module>
    screen.blit(font1.render(str(each), True, (0, 255, 0)), (0, pt))
pygame.error: Library not initialized

代码段
import sys
import pygame

pygame.init()
print(pygame.get_init())

size = width,high = 500,500
screen = pygame.display .set_mode(size)
pygame.display.set_caption("测试")
bg = (0,0,0,)

ont1 = pygame.font.Font(None,35)
lh = font1.get_linesize()
pt = 0

screen.fill(bg)

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

        screen.blit(font1.render(str(each), True, (0, 255, 0)), (0, pt))
        pt += lh

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

    pygame.display.flip()

求解决方案,

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-4-20 03:54:37 | 显示全部楼层
如果有其他错误请一并指出
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-16 01:40

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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