gpt4 book ai didi

python - 计算一个字符串在python中其他字符串中的出现次数

转载 作者:太空宇宙 更新时间:2023-11-03 11:08:55 24 4
gpt4 key购买 nike

如果这是第一个字符串:ABCD

如果这是第二个字符串:ABCD is ABCD

我想计算第一个字符串在第二个字符串中的出现次数以及在 python 中的出现次数。我该怎么做?我是 python 的新手,所以面临一些问题。谁能告诉我解决方案或提供相同的代码。

最佳答案

使用str.count() :

>>> str1 = "ABCD"
>>> str2 = "ABCD is ABCD"
>>> str2.count(str1)
2

关于python - 计算一个字符串在python中其他字符串中的出现次数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11280681/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com