# 使用string slices计算字符串中字母的个数
def lenRecur(aStr):
'''
aStr: a string
returns: int, the length of aStr
'''
# Your code here
def toChars(aStr):
aStr = aStr.lower()
res = ''
for c in aStr:
if c in 'qwertyuiopasdfghjklzxcvbnm':
res += c
return res
if toChars(aStr)[0:] == '':
return 0
elif toChars(aStr)[1:] == '':
return 1
eliif toChars(aStr)[1:] != '':
return 1 + lenRecur(toChars(aStr)[1:])