我正在执行时在python中获取错误 max(2,3)
max(2,3)
>>> max(2,3) Traceback (most recent call last): file "<console>", line 1, in ? TypeError: 'float' object is not callable
有没有语法问题?
python
python ×1