я делаю 2 л oop, что должно открыть 2 файла с таким же именем req.txt. Я хочу ввести только 1 файл, но читать два l oop. я сделал ниже, но не действительный .. ошибка msg
строка 32, с открытым (requestfile, 'r') как rqfile: TypeError: приведение к Unicode: нужна строка или буфер, файл найден
onefile= './req.txt'
with open(onefile, 'r') as requestfile:
#rqfile = rrr = requestfile
with open(requestfile,'r') as rqfile:
for line in rqfile:
line = line.rstrip()
if line.startswith('Referer: '):
urll = line[9:]
elif line.startswith('Cookie: '):
cookie=line[18:]
elif line.startswith('Host: '):
host=line[6:]
rqfile.close()
with open(requestfile,'r') as rrr:
for i, line in enumerate(rrr):
if i == 14:
username = line[:line.index('=')]
password = line[line.index('&') + 1:line.index('=', line.index('=') + 1)]
print(username, password)
rrr.close()