在Python中,可以使用count()
方法来找到字符串中子字符串的出现次数。count()
方法接受一个参数,即要查找的子字符串,并返回子字符串在原字符串中出现的次数。
下面是一个示例代码:
def count_substring(string, substring):
return string.count(substring)
# 示例用法
string = "Hello, World! Hello, Python!"
substring = "Hello"
count = count_substring(string, substring)
print(f"The substring '{substring}' appears {count} times in the string.")
输出结果为:
The substring 'Hello' appears 2 times in the string.
在上述示例中,count_substring()
函数接受两个参数:string
表示原字符串,substring
表示要查找的子字符串。函数内部调用了字符串的count()
方法来计算子字符串出现的次数,并将结果返回。
对于这个问题,腾讯云没有特定的产品或链接地址与之相关。
领取专属 10元无门槛券
手把手带您无忧上云