NameError:未定义全局名称“long”

时间:2020-12-03 16:48:39

I have a Python version 3.3.0 and I am not sure why it does not let me do long for b and m here... I tried to look up the answers on here and but nothing helped...thanks

我有一个3.3.0的Python版本,我不知道为什么它不让我为b和m做多久...我试着在这里查找答案,但没有任何帮助...谢谢

im getting an error saying

我得到一个错误说

NameError: global name 'long' is not defined


power = long(b) % long(m)

1 个解决方案

#1


57  

In Python 3.x, use int instead of long.

在Python 3.x中,使用int而不是long。

#1


57  

In Python 3.x, use int instead of long.

在Python 3.x中,使用int而不是long。