fork download
  1. #Открываем файл
  2. with open('your_file', 'r+') as f:
  3. #читаем весь файл, заменяем
  4. repl = f.read().replace("?", "?\n")
  5. #идем в начало файла, дабы его весь переписать
  6. f.seek(0)
  7. #Записываем в файл
  8. f.write(repl)
Runtime error #stdin #stdout #stderr 0.01s 8968KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Traceback (most recent call last):
  File "prog.py", line 2, in <module>
IOError: [Errno 2] No such file or directory: 'your_file'