我试图在列表中找到一个单词等于设定长度的次数?因此,例如:'my name is ryan' and 2 该函数将返回 2 作为单词长度为 2 的次数。我有:
def LEN(a,b):
'str,int==>int'
'returns the number of words that have a len of b'
c=a.split()
res=0
for i in c:
if len(i)==b:
res=res+1
return(res)
但是这一切给我的都是 1 的 res 并且不会超过第一个 i 的 len 为 c。