我寫了下面的功能:把字符串列表轉換成浮動(蟒蛇)的列表
def read_coordinates(filename):
invoerfile = open(filename)
lines = invoerfile.readlines()
for line in lines:
seperate_coordinate_rows = line.split("=")
for seperate_coordinate_row in seperate_coordinate_rows:
row = seperate_coordinate_row.split()
print row
這給了我這些列表:
['5,4', '4,5', '8,7']
['6,3', '3,2', '9,6', '4,3']
['7,6']
['9,8']
['5,5', '7,8', '6,5', '6,4']
什麼我需要添加到這個功能獲取帶有浮點數的列表作爲輸出?
你能發表一個輸入的例子嗎? –
如果您發佈了您的輸入樣本,這裏的某個人可能會想出比這更好的解決方案。 –
而不是'['7,6']',它應該是'[7.6]'。這是你想要的嗎?還是應該是'[7,6]'? – Sudipta