只有部分日志文件会打印到屏幕上,并且我的计数不正确>14。请帮助!
我尝试更改所有内容并使用不同的方法。似乎没有任何工作。这是一个小问题,但我无法弄清楚。如果这是不正确的,那么这是课程的最后一部分,生病了。
lessthanCount = 0
morethanCount = 0
error_list = []
log_file = open(PASSWORD_LOG_FILE, "r")
for line in log_file:
error_list.append(line)
log_file.close()
for count in range(0, len(error_list)-1):
if error_list[count].find('<') != -1:
lessthanCount += 1
else:
morethanCount += 2
print(error_list[count])
print("Number of passwords less than 6", lessthanCount)
print("Number of passwords more than 14", morethanCount)
只有一部分日志文件打印到屏幕上。我要求所有确切的内容。所有的。请帮忙。