从python2x到python3x的缩进错误

时间:2018-02-06 14:07:19

标签: python python-3.x python-2.7 indentation

我很久以前写了一个python2x代码,现在我想用python3x运行它 但是它给出了一个错误

File "solar.py",
loadVoltage= float(lV.registers[0]/100.0)
TabError: inconsistant use of tabs and spaces in indentation

我的代码是这样的

class realTimeData:
    def solarVoltage(self):
        lV=client.read_input_registers(0x3100,unit=1)
        loadVoltage =  float(lV.registers[0]/100.0)
        return loadVoltage

我尝试移除括号以及移除浮动但错误仍然相同......

0 个答案:

没有答案