Advertisement
teslariu

sentencia with

Sep 7th, 2022
830
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3.  
  4.  
  5. # Manera std de trabajar con archivos:
  6. f = open("farenheit.txt")
  7. print(f.read())
  8. f.close()
  9.  
  10. # Manera recomendada (NO NECESITO CERRAR EL ARCHIVO)
  11. with open("farenheit.txt") as f:
  12.     print(f.read())
  13.    
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement