Python计算文件中的句点数(.)

Python Count the number of periods (.) there are in the file

本问题已经有最佳答案,请猛点这里访问。

计算文件中的句点(.)数。

转换文件后,在文件上使用内置函数count()。一个字符串。

以整数形式回答。

我不知道该怎么做……请帮帮我!


尝试如下

1
2
3
4
with open('file.txt') as f:
    file_content = f.read()

result = file_content.count('.')

result是周期数。