Python重新模块错误

时间:2017-12-07 17:56:01

标签: python

import re
numlist=list()
fhandle = open("file.txt")
for line in fhandle:
    line=line.strip()`enter code here`
    number=re.findall('[0-9]+',line)
    num=int(number[0])
    sum=sum+num;
print(sum);

输出: Traceback(最近一次调用最后一次):   文件" re.py",第1行,in     进口重新   文件" /home/shadowixzz/Downloads/PythonCourse/re.py" ;,第6行,在     数= re.findall(' [0-9] +',线) AttributeError:module' re'没有属性' findall'

0 个答案:

没有答案