此问题已在此处有答案:
Python 3: Finding word which appears the most times without using import or counter or dictionary, only simple tools like .split() and .lower()(7个回答)
3天前关闭。
我有一个大约50000行的txt文件,每行有一个随机字符串。如何找到包含最多数字的行?
这是我的代码:
strings = []
with open('account_ids.txt') as f:
for line in f:
digits_in_line = 0
for x in line:
if x.isdigit():
digits_in_line += 1
我就是不知道怎么找到数字最多的那一行
我之所以尝试这个是因为我不知道该怎么做才能找到数字最多的行
1条答案
按热度按时间v440hwme1#
我在最初的帖子上留下了评论,但我会写几行代码来向你展示我在说什么