这段代码有什么问题:
n = 10
((n/3)).is_integer()
我不明白为什么我不能设置 n = 任何数字并检查它是否为整数。
谢谢你的帮助!
蟒蛇2.7.4
错误:
Traceback (most recent call last):
File "/home/userh/Arbeitsfläche/übung.py", line 2, in <module>
print ((n/3)).is_integer()
AttributeError: 'int' object has no attribute 'is_integer'