Guest User

Untitled

a guest
Dec 29th, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. [
  2. {bla: ala}
  3. ]
  4. ---->
  5. [
  6. {bla: ala
  7. bla
  8.  
  9. -----------------
  10.  
  11. with fileinput.FileInput(filename,
  12. inplace = True, backup ='.bak') as f:
  13.  
  14. for line in f:
  15. if "}\n]" in line:
  16. print(line.replace("}\n]",
  17. "\nbla"), end ='')
  18. else:
  19. print(line, end ='')
  20.  
Advertisement
Add Comment
Please, Sign In to add comment