fork download
  1. # your code goes here
  2. def txt():
  3. txt_input = input('Введіть назву текстового документу: ')
  4. #ввести назву txt
  5. txt_output = []
  6. file = open(txt_input, 'tw')
  7. for line in file:
  8. txt_output.append(line.split())
  9. print(txt_output)
  10. txt_out = int(input('Введіть порядковий номер слова, після якого ви хочете додати свій текст: '))
  11. #ввести номер слова від якого вставляти txt
  12. txt_append = split(str(input('Введіть текст, який хочете додати: ')))
  13. #що саме вставляти
  14. txt_output.insert(txt_out, txt_append)
  15. txt_output = sum(txt_output)
  16. file.write(txt_output)
  17. file.close()
  18. x = int(input('Введіть 1 для того, щоб продовжити: '))
  19. #ввести 1 щоб продовжити
  20. while x == 1:
  21. txt()
  22. x = int(input('Введіть 1 для того, щоб продовжити: '))
  23. #те ж саме
  24. print('Це не 1, тому я завершую роботу.')
  25. #завершую роботу
Runtime error #stdin #stdout #stderr 0.03s 9716KB
stdin
1
txt.txt
stdout
Введіть 1 для того, щоб продовжити: Введіть назву текстового документу: 
stderr
Traceback (most recent call last):
  File "./prog.py", line 21, in <module>
  File "./prog.py", line 6, in txt
PermissionError: [Errno 13] Permission denied: 'txt.txt'