Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. # -*- coding: utf-8 -*-
  2.  
  3. with open('archivo.txt') as f:
  4.     try:
  5.         while True:
  6.             linea = next(f)
  7.             print(linea, end='')
  8.     except StopIteration:
  9.         pass