我有一个文本文件,该文件的每一行都包含字节数组。 我想打印第二行和第三行等于34的行,并对它们进行计数以显示此文件中存在多少行。 我的file.txt的内容是:
12345678
12678364
90783457
95349387
python脚本应打印此文件的第一行和最后一行。 为此,我写:
count =0
with open ('file.txt', 'rt') af in_file:
for line in in_file:
if line[2:4]=='34': #problem is in this line. this line prints line numbers not value of each line.
print("line: ", line)
count +=1
print("count: ", count)
我不知道如何编写if
语句才能正常工作。