liujun9530


私信TA

用户名:liujun9530

访问量:2007

签 名:

等  级
排  名 5317
经  验 1561
参赛次数 0
文章发表 17
年  龄 0
在职情况 学生
学  校 成都理工大学
专  业

  自我简介:

TA的其他文章

def fun(a, b, c, d,str):
   for i in str:
       if i.isalpha():
           a = a + 1
       elif i.isdigit():
           b = b + 1
       elif i == " ":
           c = c + 1
       else:
           d = d + 1
   return a, b, c, d


my_str = input()
a, b, c, d = 0, 0, 0, 0
new_a, new_b, new_c, new_d = fun(a, b, c, d, my_str)
print(new_a, new_b, new_c, new_d, end=" ")

 

0.0分

0 人评分

  评论区

  • «
  • »