gpt4 book ai didi

python - 如何统计Python中某个单词出现的次数

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:01 25 4
gpt4 key购买 nike

我正在尝试创建一个 python 脚本,它会查看日志文件并告诉我们用户 bin 出现了多少次,所以我有这个:

#open the auth.log for reading
myAuthlog=open('auth.log', 'r')
for line in myAuthlog:
if re.match("(.*)(B|b)in(.*)", line):
print line

这会打印出完整的行,例如

>>> Feb  4 10:43:14 j4-be02 sshd[1212]: Failed password for bin from 83.212.110.234 port 42670 ssh2

但我只想产生次数,例如用户尝试登录 26 次

最佳答案

count = 0
myAuthlog=open('auth.log', 'r')
for line in myAuthlog:
if re.match("(.*)(B|b)in(.*)", line):
count+=1
print count

关于python - 如何统计Python中某个单词出现的次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35490325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com