题解 | #字符类型计数#

字符类型计数

http://www.nowcoder.com/practice/73ac4280bcfe4d64b85763e86e367e15

# 输出结果冒号后面有一个空格!!
get_str = input()
alpha = 0
digit = 0
space = 0
other = 0
for i in get_str:
    if i == ' ':
        space += 1
    elif i in ['0','1','2','3','4','5','6','7','8','9']:
        digit += 1
    elif i.isalpha():
        alpha += 1
    else:
        other += 1
print(f'alpha: {alpha}')
print(f'digit: {digit}')
print(f'space: {space}')
print(f'other: {other}')

全部评论

相关推荐

11-04 14:10
东南大学 Java
_可乐多加冰_:去市公司包卖卡的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务