if 语句的语法无效

发布于 2024-12-23 15:12:23 字数 597 浏览 0 评论 0原文

我将粘贴整个函数,因为它没有那么长:

def decideTile():
    global tile
    global exp
    global maxexp

    tile += 1
    exp += math.ceil(random.randrange(math.ceil((maxexp/2)/2,maxexp/2))

    if exp >= maxexp:
       levelUp()
    else:
       tileChoices = ['Battle','Loot','Nothing']
       fileType = random.choice(tileChoices)

    if tileType == 'Battle':
        battle()
    elif tileType == 'Loot':
        loot()
    elif tileType == 'Nothing':
        nothing()

现在,Python 说它

if exp >= maxexp:

的一部分是“无效语法”,我不完全确定为什么。感谢帮助!

I will just paste in the entire function, as it is not that long:

def decideTile():
    global tile
    global exp
    global maxexp

    tile += 1
    exp += math.ceil(random.randrange(math.ceil((maxexp/2)/2,maxexp/2))

    if exp >= maxexp:
       levelUp()
    else:
       tileChoices = ['Battle','Loot','Nothing']
       fileType = random.choice(tileChoices)

    if tileType == 'Battle':
        battle()
    elif tileType == 'Loot':
        loot()
    elif tileType == 'Nothing':
        nothing()

Now, Python is saying that the

if exp >= maxexp:

part of it is 'invalid syntax', and I'm not entirely sure why. Help is appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

尐偏执 2024-12-30 15:12:23

上一行缺少一个括号。要解决此问题,只需在该行末尾添加一个右括号,如下所示:

exp += math.ceil(random.randrange(math.ceil((maxexp/2)/2,maxexp/2)))

There's a parenthesis missing in the previous line. To fix the problem just add a closing parenthesis to the end of that line as follows:

exp += math.ceil(random.randrange(math.ceil((maxexp/2)/2,maxexp/2)))
聊慰 2024-12-30 15:12:23

未闭合的括号导致了错误。该行应该是:

exp += math.ceil(random.randrange(math.ceil((maxexp/2)/2,maxexp/2)))

Unclosed brackets caused the error. The line should be:

exp += math.ceil(random.randrange(math.ceil((maxexp/2)/2,maxexp/2)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文