Guest User

Untitled

a guest
Jan 25th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. with open('testfile.jpg', 'rb') as r:
  2.     with open('testfile_copy.jpg', 'wb') as f:
  3.         for line in r.readlines():
  4.             f.write(line)
Advertisement
Add Comment
Please, Sign In to add comment