“TypeError:无法隐式地将'int'对象转换为str”

时间:2016-11-15 12:21:45

标签: python-3.x

我的代码出了什么问题?看来我在代码的最后一行做了一些错误。你能解释一下错误的类型

fname=input("enter your file name")
handle=open(fname)
count=0

for count in handle:
     if count.startswith("X"):
        count=count+1
print ("the total character in my line",count)  

0 个答案:

没有答案