/
Avinas71
/
M_7_2
Обзор
Документация
Войти
/
Avinas71
/
M_7_2
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Module_7_2
26 строк
700 B
Avinas71
create Module_7_2
14 дек 2024, 11:53
14 дек 2024, 11:53
b4d5cba
Код
Авторство
О чём код?
def custom_write(file_name, strings): strings_positions = {} number = 1 file = open(file_name, 'w', encoding='utf-8') for string in strings: strings_positions[(number, file.tell())] = string file.write(string + '\n') number +=1 file.close() return strings_positions info = [ 'Text for tell.', 'Используйте кодировку utf-8.', 'Because there are 2 languages!', 'Спасибо!'] result = custom_write('test.txt', info) for elem in result.items(): print(elem) 'test.txt' : Text for tell. Используйте кодировку utf-8. Because there are 2 languages! Спасибо!