python3-不存​​在的行上的无效语法

时间:2014-01-20 12:05:28

标签: python regex zipfile

python3-语法错误

档案“6_1.py”,第8行

SyntaxError: invalid syntax

但是没有第8行。那么问题是什么。

import zipfile,re
with ZipFile('../../下载/channel.zip') as myzip:
    nothing = '90052'
    rex = re.compile(r'\d+')
    while True:
        print(myzip.getinfo(nothing+'txt'))
        nothing = re.findall(rex, myzip.open(nothing+'txt')[0]        

1 个答案:

答案 0 :(得分:5)

不,但Python认为应该是因为第7行不完整:

nothing = re.findall(rex, myzip.open(nothing+'txt')[0]        
#              open 1 -------- open 2 ----- close 2 - ^ where is close 1?

最后缺少结束)