我有一個文本文件,它看起來像這樣:一個額外的列添加到Word文件
1 0.0
2 0.2
3 0.4
我想現在要做的是檢查特定值是否是閾值之間,然後添加一些行。因此,如果值是0.1和0和0.2之間,從而「1」應該被添加並輸出應爲:
1 0.0 1
2 0.2
3 0.4
我嘗試這樣做:
#open doc
doc = "sample_name.txt"
f = open(doc, "r")
lines = l.readlines()
count = 1
for line in lines:
elements = line.split(" ")
start_time = elements[1]
#get element from next line
next_line = lines[count]
elements_new_line = next_line.split(" ")
end_time = element_new_line[1]
if i >= end_time and i <= start_next_time:
#add a one the file
#increase counter
count = count + 1
任何想法我如何寫1到.txt文件
莫非你解釋一點點..舉一些例子 –