# создаешь путь до файла
path_author = f'/resources/Parsing/brainyquote.com/authors_quotes/{name_for_file[2]}.txt'
# ЦИКЛ
for string in soup_2.select('[style="display: flex;justify-content: space-between"]'):
print(string)
quotes.append(string.text)
Открытие файла на перезапись пока идет ЦИКЛ
with open(path_author, 'w') as writefile: