To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Revision:

root / python-intro.py @ 0:15b82ccc064b

History | View | Annotate | Download (81 Bytes)

1
source = open('data.txt', 'r')
2
for line in source:
3
    print line
4
source.close()