这适用于 Python 2:import reprint sum([int(i) for i in re.findall('[0-9]+',open(raw_input('What is the file you want to analyze?\n'),'r').read())])但是为什么我在使用 Python 3 时会出现语法错误?Python3import reprint sum([int(i) for i in re.findall('[0-9]+',open(input('What is the file you want to analyze?\n')).read())])
1 回答
Helenr
TA贡献1780条经验 获得超3个赞
这是因为在 Python3 中,您应该在 print 函数的参数周围使用方括号。
打印()
所以你的代码一写就可以工作
print(sum([int(i) for i in re.findall('[0-9]+',open(input('你要分析的文件是什么?\n')).read())] ))
添加回答
举报
0/150
提交
取消