Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. f = open("file.txt", "w")
  2. for f1, f2 in zip(timlist, acclist):
  3. print(f1, "t", f2, "n", file=f)
  4. f.close
  5.  
  6. f = open("file.txt", "w")
  7. for f1, f2 in zip(timlist, acclist):
  8. print(f1, "t", f2, "n")
  9. f.close
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement