Python 中 count() 函数如何显示统计结果?
一位 python 初学者在学习 count() 函数时遇到了困扰。以下是他提供的代码片段:
file_name = 'paper1.txt' with open(file_name) as fn: lines = fn.readlines() for line in lines: line.count('the')
代码已正确打开一个名为 "paper1.txt" 的文件,并读取其内容到 lines 列表中。然后,通过迭代 lines 列表,count() 函数用于统计该行的 "the" 字符串出现次数。
然而,当执行代码时,终端并不会显示任何输出。这是什么原因呢?
实际上,count() 函数自身不会输出结果。它仅仅计算并返回指定的子字符串在目标字符串中出现的次数。要使其在终端中显示结果,需要使用 print() 函数:
file_name = 'paper1.txt' with open(file_name) as fn: lines = fn.readlines() for line in lines: print(line.count('the'))
编辑后的代码片段会在终端中输出每一行中 "the" 字符串出现的次数。