不明白为什么使用while / else语句会出现此无效语法错误

时间:2019-07-16 23:41:04

标签: python python-3.x

因此,我一直在写的一小段代码一直拒绝使用。目前,我已经尝试用我能想到的一切替换它,或者它拒绝更改fished是什么,或者只是停止在else语句上。

def KBLPEThunt():
    global fished
    if KBLPEThuntingequipped == "Nothing":
        print("You should probably go back and give your Kobold something to actually hunt with.")
    if KBLPEThuntingequipped == "Fishing_Rod":
        while items[fished[6] < 3:
            fished == random.choice(list(items))
        else:
            print(fished)

关于如何解决此问题的任何想法?

0 个答案:

没有答案