Python中的字符串计数函数:count()的用法和示例

2023-03-18 00:00:00 示例 字符串 用法

在Python中,字符串的count()方法可以用于计算字符串中某个子串出现的次数。该方法的基本用法如下:

string.count(substring)

其中,string表示要进行计数的字符串,substring表示要计数的子串。调用该方法后,它会返回子串在字符串中出现的次数。

下面是一个示例,演示如何使用count()方法计算字符串中子串出现的次数:

string = "https://pidancode.com/"
substring = "pida"
count = string.count(substring)
print("子串出现的次数为:", count)

输出结果为:

子串出现的次数为: 2

另外,如果要计算字符串中多个子串出现的总次数,可以使用循环结合count()方法,如下所示:

string = "pidancode 皮蛋编程 pidancode"
substrings = ["pidan", "code"]
count = 0
for substring in substrings:
    count += string.count(substring)
print("子串出现的次数为:", count)

输出结果为:

子串出现的次数为: 3

注意,count()方法区分大小写,因此在计算时要注意子串的大小写。

相关文章