summaryrefslogtreecommitdiff
path: root/progs/a605.py
blob: d820c8da862d8552402acd052a539d4a88f6fa72 (plain)
1
2
3
4
5
def count_charac(str1):
 total = 0
 for i in str1:
    total = total + 1
 return total