ファイルにパスのリストがあり、.txt
Pythonを使用してパス名の1つのフォルダーを解析しようとしています。
9999\New_folder\A\23818\files\
9999\New_folder\A\18283_HO\files\
...
私が興味を持っているのは、との間9999\New_folder\A\
で文字列を引っ張ることです\files\
。
23818
18283_HO
どんな助けでもいただければ幸いです!
編集:みんなありがとう!あなたの入力で次のコードを思いついた。
input_text = open('C:\\Python\\textintolist\\Document1.txt', 'r')
output_text = open('output.txt', 'w')
paths =[]
for line in input_text:
paths.append(line)
for path in paths:
output_text.write(str(path.split('\\')[3])+"\n")