字符数python 3

时间:2018-10-04 17:58:48

标签: python-3.x

我这样做是为了对字符串中的字符进行计数,但最后还是不确定如何将所有字符串中的所有字符一起计数!

导入系统

def main ():
    nr = 1
    for line in sys.stdin :
        line = line.rstrip ()
        print (len(line))
        nr = nr + 1

main()

1 个答案:

答案 0 :(得分:1)

要计算所有字符串中的总字符数,您可以使用以下方法:

import sys
count = 0

def main ():
    global count
    for line in sys.stdin :
        line = line.rstrip ()
        print (len(line))
        count += len(line)  #same as count=count+len(line)
    return count

print("total characters : "+str(main()))