Python中可以使用count()
方法来计算字符串插入到另一个字符串中的次数。count()
方法接受一个参数,即要计算的子字符串,然后返回该子字符串在原字符串中出现的次数。
以下是一个示例代码:
string = "Hello, World! Hello, Hello!"
substring = "Hello"
count = string.count(substring)
print("子字符串出现的次数:", count)
输出结果为:
子字符串出现的次数: 3
在上述示例中,我们计算了子字符串"Hello"在原字符串中出现的次数,结果为3。
领取专属 10元无门槛券
手把手带您无忧上云