我正在读取一个文本文件,其中每行包含两个用逗号分隔的浮点数(x,y),如下所示:
5.2,4.4
2.2,7.2
3.6,6.9
我需要从每行读取每两个浮点数,对它们进行一些计算,例如第一行,我有 5.2 + 4.4,然后在这一端打印它,如下所示:x = 5.2,y = 4.4 和 sum = 9.6
这是我尝试过的:
with open("data.txt", "r") as f:
myFile = f.read()
a = myFile.splitlines()
(here i cant find how to read the floats to do the sum)
print ('x= {}, y= {}, sum= {}'.format(x, y, sum))
慕村9548890
猛跑小猪
哔哔one
幕布斯7119047
相关分类