Advertisement
teslariu

arc

Jun 15th, 2021
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4.  
  5.  
  6. # Abro un archivo para agregarle datos sin borrar los existentes
  7. f = open('archivo.txt','a')
  8.  
  9. # creo una lista de datos
  10. datos = ["Ernestina", "Jorge"]
  11.  
  12. # escribo la lista de datos en el archivo:
  13. for dato in datos:
  14.     f.write(dato + "\n")
  15.  
  16. # cierro el archivo
  17. f.close()
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement