鱼C论坛

 找回密码
 立即注册
查看: 1170|回复: 2

[已解决]关于第37讲最后一道作业题,乌龟吃鱼

[复制链接]
发表于 2020-9-12 21:40:49 | 显示全部楼层 |阅读模式

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

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

x
参考了答案,磕磕绊绊写了半天,程序还是没有输出结果,是哪里的问题呢?
import random

class Turtle():
    def __init__(self):
        self.x=random.randint(0,11)
        self.y=random.randint(0,11)
        self.power=100
    def move(self):
        while self.power>=0:
            x_weiyi=random.choice([-1,1,2,-2])
            self.x+=x_weiyi
            if self.x >= 0 and self.x <= 10:
                self.x+=0
            elif self.x<0:
                self.x=0
            elif self.x >10:
                self.x=10

            y_weiyi = random.choice([-1, 1, 2, -2])
            self.y += y_weiyi
            if self.y >= 0 and self.y <= 10:
                self.y += 0
            elif self.y < 0:
                self.y = 0
            elif self.y > 10:
                self.y = 10
            self.power-=1
            return(self.x,self.y)

class Fish():
    def __init__(self):
        self.x=random.randint(0,11)
        self.y=random.randint(0,11)
    def move(self):
        x_weiyi=random.choice([-1,1])
        self.x+=x_weiyi
        if self.x >= 0 and self.x <= 10:
            self.x+=0
        elif self.x<0:
            self.x=0
        elif self.x >10:
            self.x=10

        y_weiyi = random.choice([-1, 1])
        self.y += y_weiyi
        if self.y >= 0 and self.y <= 10:
            self.y += 0
        elif self.y < 0:
            self.y = 0
        elif self.y > 10:
            self.y = 10
        return (self.x, self.y)

fishes=[]
for i in range(0,10):
    fish=Fish()
    fishes.append(fish)
wugui=Turtle()
wugui.move()
position=wugui.move()
for fish in fishes[:]:
    if fish.move()==position:
        wugui.power+=20
        fishes.remove(fish)
        print('有一条鱼被吃掉了,乌龟的能量加20点。')
if len(fishes)==0:
    print('鱼都给吃光了,游戏结束。')
if wugui.power <=0:
    print('乌龟都给累死啦!游戏结束。')
最佳答案
2020-9-13 11:01:23
把while循环拿出来,不然鱼还没动乌龟就爬结束了
import random

class Turtle():
    def __init__(self):
        self.x=random.randint(0,11)
        self.y=random.randint(0,11)
        self.power=100
    def move(self):
        x_weiyi=random.choice([-1,1,2,-2])
        self.x+=x_weiyi
        if self.x >= 0 and self.x <= 10:
            self.x+=0
        elif self.x<0:
            self.x=0
        elif self.x >10:
            self.x=10

        y_weiyi = random.choice([-1, 1, 2, -2])
        self.y += y_weiyi
        if self.y >= 0 and self.y <= 10:
            self.y += 0
        elif self.y < 0:
            self.y = 0
        elif self.y > 10:
            self.y = 10
        self.power-=1
        return(self.x,self.y)

class Fish():
    def __init__(self):
        self.x=random.randint(0,11)
        self.y=random.randint(0,11)
    def move(self):
        x_weiyi=random.choice([-1,1])
        self.x+=x_weiyi
        if self.x >= 0 and self.x <= 10:
            self.x+=0
        elif self.x<0:
            self.x=0
        elif self.x >10:
            self.x=10

        y_weiyi = random.choice([-1, 1])
        self.y += y_weiyi
        if self.y >= 0 and self.y <= 10:
            self.y += 0
        elif self.y < 0:
            self.y = 0
        elif self.y > 10:
            self.y = 10
        return (self.x, self.y)

fishes=[]
for i in range(0,10):
    fish=Fish()
    fishes.append(fish)
wugui=Turtle()


while wugui.power:
    position = wugui.move()
    for fish in fishes:
        if fish.move()==position:
            wugui.power+=20
            fishes.remove(fish)
            print('有一条鱼被吃掉了,乌龟的能量加20点。')
    if len(fishes)==0:
        print(f'鱼都给吃光了,游戏结束。乌龟能量为{wugui.power}')
        break
if len(fishes) > 0:
    print('乌龟都给累死啦!游戏结束。')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-9-13 10:45:46 | 显示全部楼层
你最后没写循环啊
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-9-13 11:01:23 | 显示全部楼层    本楼为最佳答案   
把while循环拿出来,不然鱼还没动乌龟就爬结束了
import random

class Turtle():
    def __init__(self):
        self.x=random.randint(0,11)
        self.y=random.randint(0,11)
        self.power=100
    def move(self):
        x_weiyi=random.choice([-1,1,2,-2])
        self.x+=x_weiyi
        if self.x >= 0 and self.x <= 10:
            self.x+=0
        elif self.x<0:
            self.x=0
        elif self.x >10:
            self.x=10

        y_weiyi = random.choice([-1, 1, 2, -2])
        self.y += y_weiyi
        if self.y >= 0 and self.y <= 10:
            self.y += 0
        elif self.y < 0:
            self.y = 0
        elif self.y > 10:
            self.y = 10
        self.power-=1
        return(self.x,self.y)

class Fish():
    def __init__(self):
        self.x=random.randint(0,11)
        self.y=random.randint(0,11)
    def move(self):
        x_weiyi=random.choice([-1,1])
        self.x+=x_weiyi
        if self.x >= 0 and self.x <= 10:
            self.x+=0
        elif self.x<0:
            self.x=0
        elif self.x >10:
            self.x=10

        y_weiyi = random.choice([-1, 1])
        self.y += y_weiyi
        if self.y >= 0 and self.y <= 10:
            self.y += 0
        elif self.y < 0:
            self.y = 0
        elif self.y > 10:
            self.y = 10
        return (self.x, self.y)

fishes=[]
for i in range(0,10):
    fish=Fish()
    fishes.append(fish)
wugui=Turtle()


while wugui.power:
    position = wugui.move()
    for fish in fishes:
        if fish.move()==position:
            wugui.power+=20
            fishes.remove(fish)
            print('有一条鱼被吃掉了,乌龟的能量加20点。')
    if len(fishes)==0:
        print(f'鱼都给吃光了,游戏结束。乌龟能量为{wugui.power}')
        break
if len(fishes) > 0:
    print('乌龟都给累死啦!游戏结束。')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-18 16:54

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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