鱼C论坛

 找回密码
 立即注册
查看: 2097|回复: 5

零基础入门python中的68讲中的小乌龟程序运行错误问题

[复制链接]
发表于 2019-2-17 21:33:35 | 显示全部楼层 |阅读模式

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

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

x
import pygame
import sys

#初始化pygame
pygame.init()

size = width, height = 600, 400
speed = [-2, 1]
bg = (255 ,255, 255)

#创建指定大小的窗口
screen = pygame.display.set_mode(size)
#设置窗口标题
pygame.display.set_caption('初次见面,请大家多多关照!')

#加载图片
turtle = pygame.image.lord('turtle.png')
#获得图像的位置矩形
position = turble.get_rect()

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

    #移动图像
    position = position.move(speed)

    if position.left < 0 or position.right > width:
        #翻转图像
        turtle = pygame.transform.flip(turtle, True, False)
        #反方向移动
        speed[0] = -speed[0]

    if position.top < 0 or position.bottom > height:
        speed[1] = -speed[1]

    #填充背景
        screen.fill(bg)
    #更新图像
    screen.blit(turtle, position)
    #更新界面
    pygame.display.flip()
    #延迟10毫秒
    pygame.time.delay(10)





运行之后出现
   Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 22:20:52) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>>
=================== RESTART: C:\Users\李\Desktop\小乌龟\小乌龟.py ===================
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
  File "C:\Users\李\Desktop\小乌龟\小乌龟.py", line 17, in <module>
    turtle = pygame.image.lord('turtle.png')
AttributeError: module 'pygame.image' has no attribute 'lord'
>>>



求助大佬怎么解决?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-2-17 21:35:04 | 显示全部楼层
load
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-2-17 22:27:10 | 显示全部楼层
错误来自这这里:
#加载图片
turtle = pygame . image . load('turtle.png')   # 楼主把 load() 写成了 lord()   
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-2-18 19:40:41 | 显示全部楼层
改了还是不行呀,还有什么问题吗?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2019-2-18 19:47:29 | 显示全部楼层
修改后
import pygame
import sys

#初始化pygame
pygame.init()

size = width, height = 600, 400
speed = [-2, 1]
bg = (255 ,255, 255)

#创建指定大小的窗口
screen = pygame.display.set_mode(size)
#设置窗口标题
pygame.display.set_caption('初次见面,请大家多多关照!')

#加载图片
turtle = pygame.image.load('turtle.png')
#获得图像的位置矩形
position = turtle.get_rect()

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

    #移动图像
    position = position.move(speed)

    if position.left < 0 or position.right > width:
        #翻转图像
        turtle = pygame.transform.flip(turtle, True, False)
        #反方向移动
        speed[0] = -speed[0]

    if position.top < 0 or position.bottom > height:
        speed[1] = -speed[1]

    #填充背景
    screen.fill(bg)
    #更新图像
    screen.blit(turtle, position)
    #更新界面
    pygame.display.flip()
    #延迟10毫秒
    pygame.time.delay(10)
   

报错
Python 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 22:20:52) [MSC v.1916 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>>
=================== RESTART: C:\Users\李\Desktop\小乌龟\小乌龟.py ===================
pygame 1.9.4
Hello from the pygame community. https://www.pygame.org/contribute.html
Traceback (most recent call last):
  File "C:\Users\李\Desktop\小乌龟\小乌龟.py", line 17, in <module>
    turtle = pygame.image.load('turtle.png')
pygame.error: Couldn't open turtle.png
>>>
还是有问题,怎么解决?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-12-6 08:55:52 From FishC Mobile | 显示全部楼层
jackz007 发表于 2019-2-17 22:27
错误来自这这里:

代码运行无报错,但是图片不显示是因为什么呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 04:10

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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