Advertisement
Fhernd

recorrido-manual.py

Jun 10th, 2018
1,854
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement