Guest User

Untitled

a guest
May 26th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. for num in (1,2,3,4):
  2. with open(r'C:UsersBatmanDesktopnum.csv','a',encoding='ANSI') as f:
  3. f.close()
  4.  
  5. for num in range(1,4):
  6. with open(r'C:UsersBatmanDesktop{}.csv'.format(num),'a',encoding='ANSI') as f:
  7. pass
Add Comment
Please, Sign In to add comment