Python:TypeError:'float'对象不可调用

时间:2009-12-05 00:52:23

标签: python types

我正在尝试使用此代码加入2个字符串:

def __get_temp(self):
    return float(self.ask('RS'))

def __set_temp(self, temp):
    set = ('SS' + repr(temp))
    stat = self.ask(set)
    return self.check(stat)

temp = property(__get_temp, __set_temp)

一旦合在一起,我就会使用PyVisa通过串行总线发送信号。但是,当我尝试调用该函数时,我得到了

Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
chil.temp(13)
TypeError: 'float' object is not callable

我试过四处寻找这个错误的解释,但没有一个是有道理的。有谁知道发生了什么事?

1 个答案:

答案 0 :(得分:7)

看起来你正试图设置属性temp,但你实际上正在做的是获取属性,然后尝试使用参数13将其作为函数调用。设置语法是:

chil.temp = 13