new_data.txtという.txtファイルがあります。
start;pause;stop;pause;start;pause;stop;start;stop;start;
new_data.txtファイルにある「開始」単語の数を教えてくれるプログラムを作成するにはどうすればよいですか?
new_data.txtという.txtファイルがあります。
start;pause;stop;pause;start;pause;stop;start;stop;start;
new_data.txtファイルにある「開始」単語の数を教えてくれるプログラムを作成するにはどうすればよいですか?
with open('new_data.txt') as infile:
answer = sum(line.count('start') for line in infile)
ファイルが、start;pause;stop;pause;start;pause;stop;start;stop;start; を含むプレーン テキスト ファイルである場合。何度も繰り返しますが、これを行うだけです:
with open("/path/to/file") as f:
num = f.read().count("start")
ただし、ファイルが非常に大きい場合、RAM に負荷がかかる可能性があることに注意してください。これは、小規模から中規模のサイズのファイルにのみ使用します。