Guest User

Untitled

a guest
Jan 22nd, 2019
71
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.txt', 'w') as f:
  2. for f1, f2 in zip(A, B):
  3. print >> f, f1, f2
  4.  
  5. with open('output.txt', 'w') as f:
  6. for f1, f2 in zip(A, B):
  7. print(f1, f2, file=f)
Add Comment
Please, Sign In to add comment