Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- #Initialise variables and imports
- import os.path
- DataFile='emill.dat'
- fileObject = open("emill.dat",'r') #Opens data file
- fileContents = fileObject.read()
- print 'The contents of emill.dat follow'
- print fileContents
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement