codewar

Posted run_qin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了codewar相关的知识,希望对你有一定的参考价值。

判断是否有ox

sample:

def xo(s):
s = str.lower(s)
s = list(s)
counto=0
countx=0
for item in s:
if item == ‘o‘:
counto+=1
elif item ==‘x‘:
countx+=1
return counto==countx

别人的

def xo(s): s = s.lower() return s.count(‘x‘) == s.count(‘o‘)

以上是关于codewar的主要内容,如果未能解决你的问题,请参考以下文章