仅当存在特定字符时才计算行数 - Python

发布于 2025-01-15 06:25:19 字数 241 浏览 1 评论 0原文

我有一个文本文件(将其视为 main.txt),其中包含多种语言内容,并且我有一个包含特定字符的字符集文本文件。 例如:字符集文本文件包含

e
f
g
h

我想计算 main.txt 中包含字符集中任何字符的行数。如果 main.txt 中的一行包含 efgh,则该行应被计数如1。

I am having a text file(consider it as main.txt) which has multiple language contents and I am having a charcter set text file which has particular characters.
For example: character set text file contains

e
f
g
h

I want to count the number of lines in main.txt which contains anyone of the character in the character set. If a line in main.txt contains e or f or g or h, then that line should be counted as 1.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

和影子一齐双人舞 2025-01-22 06:25:19
count = 0
with open('main.txt') as f:
    for line in f:
        if "e" in line or "f" in line or "g" in line or "h" in line:
            count = count + 1
print(count)
count = 0
with open('main.txt') as f:
    for line in f:
        if "e" in line or "f" in line or "g" in line or "h" in line:
            count = count + 1
print(count)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文