gpt4 book ai didi

python - 两个字符串中出现相同字符的情况

转载 作者:行者123 更新时间:2023-12-01 06:02:20 27 4
gpt4 key购买 nike

我想使用for循环来计算一个字符串中的字符在另一个字符串中出现的次数。

例如如果 string1 = 'python' 且 string2 = 'boa constrictor' 那么它应该计算为 6 (2 t's, 3 o's, 1 n)

有人知道怎么做吗?

最佳答案

非常简单:

count = 0

for letter in set(string1):
count += string2.count(letter)

print(count)

关于python - 两个字符串中出现相同字符的情况,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9732515/

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