txt 包含逐行“响应 [200]”的条目,然后是文件的链接。assert 代表除“Response[200]”以外的任何内容。在这里它不起作用。为什么?
# -*- coding: utf-8 -*-
f = open('files.txt', 'r', encoding='utf-8')
for line in f.readlines():
print (line)
resp = '<Response [200]>'
assert resp, 'file not found'
f.close()
尝试: