Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # -*- coding: utf-8 -*-
- with open('archivo.txt') as f:
- try:
- while True:
- linea = next(f)
- print(linea, end='')
- except StopIteration:
- pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement