Advertisement
paster442

Untitled

Jan 17th, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. from os import chdir
  2. from pyperclip import copy
  3. chdir("C:\\Users\\HP\\Downloads\\")
  4.  
  5. from pandas import *
  6. f = open("users.txt", "r+")
  7. data = read_csv("userdb.csv")
  8. month = data["Name"].tolist()
  9.  
  10. for u in month:
  11. f.write(u)
  12. f.write("\n")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement