python 统计文件中1的数量
时间: 2024-03-12 08:43:25 浏览: 55
python可以统计文件的行数
你可以使用 Python 的内置函数 open() 打开文件,然后遍历文件中的每一行,使用字符串方法 count() 统计每一行中 1 的数量,最后累加到总数量中。
以下是一个示例代码:
```python
file_path = 'file.txt'
count = 0
with open(file_path, 'r') as f:
for line in f:
binary = line.strip() # 去除行尾换行符
count += binary.count('1') # 统计二进制数中 1 的数量
print(count)
```
其中,'file.txt' 是要统计的文件路径。
输出结果为文件中所有行中 1 的数量之和。
阅读全文