Advertisement
rfmonk

tempfile_TemporaryFile_text.py

Jan 28th, 2014
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. #1/usr/bin/env python
  2.  
  3. # this is from The Python
  4. # Standard Library by example
  5. # ISBN13: 9780321767349
  6.  
  7. import tempfile
  8.  
  9. with tempfile.TemporaryFile(mode='w+t') as f:
  10.     f.writelines(['first\n', 'second\n'])
  11.     f.seek(0)
  12.  
  13.     for line in f:
  14.         print line.rstrip()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement