Ответы
Ответ дал:
0
Python:
with open('t.txt', 'r') as input_file, \
open('cif.txt', 'w') as cif_file, \
open('other.txt', 'w') as other_file:
for char in input_file.read():
if char.isdigit():
cif_file.write(char)
else:
other_file.write(char)
Вас заинтересует
1 год назад
1 год назад
3 года назад
3 года назад
8 лет назад