summaryrefslogtreecommitdiff
path: root/progs/unparsable_programs/a227.py
blob: 014399549104911264fedaadeaae2fa158424bda (plain)
1
2
3
4
5
6
7
8
9
10
def count_alpha_dig_spl(string):
  alphabets=digits = special = 0
  for i in range(len(string)):
    if(string[i].isalpha()):
        alphabets = alphabets + 1
    elif(string[i].isdigit()):
        digits = digits + 1
    else:
        special = special + 1
  return (alphabets,digits,special)