gpt4 book ai didi

Python 语法错误 : can't assign to operator in module but works in interpreter

转载 作者:太空狗 更新时间:2023-10-29 20:50:46 27 4
gpt4 key购买 nike

我有一个字符串a,我想根据它的长度将它分成两半,所以我有

a-front = len(a) / 2 + len(a) % 2

这在解释器中工作正常,但是当我从命令行运行模块时,python 给我一个SyntaxError: can't assign to operator。这可能是什么问题。

最佳答案

连字符和下划线可能打错了,试试

a_front = len(a) / 2 + len(a) % 2

关于Python 语法错误 : can't assign to operator in module but works in interpreter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2697610/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com