4

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

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

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

4

1 回答 1

3

使用str.count()

>>> str1 = "ABCD"
>>> str2 = "ABCD is ABCD"
>>> str2.count(str1)
2
于 2012-07-01T08:50:54.633 回答