我这个乌龟吃鱼的程序不知道对不对啊
本帖最后由 Twilight6 于 2020-7-12 23:46 编辑import random
class tortoise:
direction_list = ["x","y"]
current_location = {"x":0,"y":0}
value = {"x":1,"y":1}
def move(self):
run = ,random.randint(1,2)]
if 10<self.current_location] or self.current_location]<0 :
self.value] *= -1
self.current_location] = self.current_location] + run * self.value]
return self.current_location
class fishc:
fishc_list = ["x","y"]
current_location = {"x":0,"y":0}
value = {"x":1,"y":1}
def move(self):
run = ,1]
if 10<self.current_location] or self.current_location]<0 :
self.value] *= -1
self.current_location] = self.current_location] + run * self.value]
return self.current_location
t = tortoise()
yu = list(range(10))
life_fishc = list(range(10))
f = list(range(10))
value = 100
l = 0
gui = {}
for i in range(len(yu)):
yu = 1
life_fishc = fishc()
while value > 0 and l<8 :
if value<100 :
gui = t.move()
for i in range(len(yu)):
if yu :
f = life_fishc.move()
if f == gui and yu != 0:
l += 1
yu = 0
value += 20
print("第%d条鱼被吃了"%i)
value -= 1
print("有%d条鱼被吃了"%l)
哪位大哥能帮我看看 初探门槛 发表于 2020-7-12 22:57
哪位大哥能帮我看看
你是不是发错类型了,要不要帮转问题求助? Twilight6 发表于 2020-7-12 23:02
你是不是发错类型了,要不要帮转问题求助?
好的 本帖最后由 Twilight6 于 2020-7-12 23:59 编辑
初探门槛 发表于 2020-7-12 23:35
好的
代码中的 被编辑器吃掉了,要这样发才不会没掉:
https://fishc.com.cn/thread-52272-1-1.html
我已经帮你重新编辑了
初探门槛 发表于 2020-7-12 23:35
好的
你定义的属性都错了,你这里:
class tortoise:
direction_list = ["x","y"]
current_location = {"x":0,"y":0}
value = {"x":1,"y":1}
和这里:
class fishc:
fishc_list = ["x","y"]
current_location = {"x":0,"y":0}
value = {"x":1,"y":1}
定义的都是类属性,而类属性是所有该类实例对象共享的,所以你创建再多的鱼,都是同个坐标出现的,你应该用 __init__方法来初始化位置坐标,配合 random 达到随机效果
其他的错误没怎么看
Twilight6 发表于 2020-7-12 23:58
你定义的属性都错了,你这里:
为什么不写在init里就是公用的,我以为每个实例对象都是独立的 初探门槛 发表于 2020-7-13 09:54
为什么不写在init里就是公用的,我以为每个实例对象都是独立的
实例属性都是独立的,而类属性是类的,这一类全部都共有的
方法里的变量前加 self.就是实例属性,类属性是在类内,方法外的属性
页:
[1]