從乙個 txt中讀取部分資料儲存在新的 txt中

2021-10-19 22:46:07 字數 1492 閱讀 9913

if __name__ ==

'__main__'

: file_list =

#先建立乙個列表

name =

'c://users//大男孩//desktop//orig'

with

open

(name,

'r', encoding=

'utf-8'

)as f:

lines = f.readlines(

)#獲取所有行

for line in lines:

#第i行

if'summary'

in line:

break

else

: filename = line.split(

' ')[2

]print

(filename)

with

open

(r'c://users//大男孩//desktop//orig//lits_pro.txt'

,'w'

)as f2:

for item in file_list:

f2.writelines(item+

'\n'

) f2.close(

)# import os

# file_list=

# #從paddledetection/dataset/fruit/fruit-detection/imagesets/main資料夾下的train.txt檔案中讀取資料

# #將從paddledetection/dataset/fruit/fruit-detection/imagesets/main資料夾下的train.txt檔案中讀取資料寫入到paddledetection/dataset/fruit/fruit-detection資料夾的train.txt中

# with open(r』paddledetection/dataset/fruit/fruit-detection/train.txt』,『w』) as f2:

# for item in file_list:

# f2.writelines(item[0] + 』 』 + item[1]+』\n』)

# f2.close()

從乙個檔案讀取資料

從乙個檔案讀取資料,想必都會。比如舉乙個簡單的例子。下面這個函式,就是從檔案讀取所有資料,一行一行讀取,資料存在des這個陣列中 int getstringfromfile file fp char ch int i 0 int j while feof fp des i 0 return 0 當然...

讀取TXT檔案中的最後乙個資料

import csv import sys import json reload sys sys.setdefaultencoding utf 8 filename amazonraisinresult.txt with open filename,rb as f votes for review ...

從乙個「儲存」按鈕開始

最近工作中,後端需要提供乙個介面,這個介面需要對同乙個實體表新增與刪除,接這個需求時,直覺上就覺得這個介面很反常,但是當時是在做mvp,追求速度,所以當時沒有太多糾結,就先做了,並在注釋中加上了繼續思考的todo事項。現在精細化產品的時候,看到了之前寫的注釋,於是有了這篇思考。當前的需求是這樣的,介...