Python中count()函数的常见用途及示例

2023-03-18 00:00:00 函数 示例 用途

count()函数是Python内置的字符串方法之一,用于计算字符串中某个子字符串出现的次数。

常见用途包括:

  • 统计某个字符在字符串中出现的次数;
  • 统计某个单词在文本中出现的次数;
  • 统计某个词语在网页源代码中出现的次数。

示例1:统计字符串中某个字符出现的次数

text = "pidancode is a great website for learning Python programming"
count = text.count("a")
print(count) # 输出 5

示例2:统计文本中某个单词出现的次数

text = "Python is a popular programming language, and pidancode is a great website to learn Python."
count = text.count("Python")
print(count) # 输出 1

示例3:统计网页源代码中某个词语出现的次数

import requests

url = "https://pidancode.com/"
response = requests.get(url)
html = response.text

count = html.count("Python")
print(count) # 输出 3

上述示例中,第一个示例统计字符串中字符"a"出现的次数,第二个示例统计文本中单词"Python"出现的次数,第三个示例统计网页源代码中词语"Python"出现的次数。

相关文章