Guest User

Untitled

a guest
Jul 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. with open("output", "w") as f:
  2. print >> f, "foo"
  3. print >> f, "bar"
  4.  
  5. foo
  6. bar
  7.  
  8. print >>f, "foo",
  9.  
  10. from __future__ import print_function
  11.  
  12. print("foo", end="", file=f)
Add Comment
Please, Sign In to add comment