@ -279,12 +279,20 @@ if __name__ == "__main__":
else:
sq = '0'
if len(config) > 6:
tx = config[6]
# tx = config[6]
txf = float(config[6])
print(txf)
# print( "{:.4f}".format(txf))
tx = "{:.4f}".format(txf)
print(tx)
tx = '434.9000'
if len(config) > 7:
rx = config[7]
# rx = config[7]
rxf = float(config[7])
print(rxf)
# print( "{:.4f}".format(rxf))
rx = "{:.4f}".format(rxf)
print(rx)
rx = '435.0000'
Powered by TurnKey Linux.