我正在研究一个python exercise,它会问:# Return True if the string "cat" and "dog" appear the same number of
# times in the given string.
# cat_dog('catdog') → True
# cat_dog('catcat') → False
# cat_dog('1cat1cadodog') → True
这是我当前的代码:
^{pr2}$
我看了一下它,我认为它应该可以工作,但是它没有通过一些测试,这表明我对Python逻辑的工作原理不了解。任何解释为什么我的解决方案不起作用都是很好的。以下是所有测试结果:cat_dog('catdog') → True True OK
cat_dog('catcat') → False False OK
cat_dog('1cat1cadodog') → True True OK
cat_dog('catxxdogxxxdog') → False True X
cat_dog('catxdogxdogxcat') → True True OK
cat_dog('catxdogxdogxca') → False True X
cat_dog('dogdogcat') → False True X
cat_dog('dogdogcat') → False True OK
cat_dog('dog') → False False OK
cat_dog('cat') → False False OK
cat_dog('ca') → True True OK
cat_dog('c') → True True OK
cat_dog('') → True True OK