Advertisement
TrashRat

STRIP DAT

Jan 7th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. passwords = []
  2. with open("namlist.txt", "r") as file:
  3.     for line in file:
  4.         newVal = line.split(",")
  5.         for value in newVal:
  6.             passwords.append(value + "\n")
  7.            
  8. with open("enumlist.txt", "w") as file:
  9.     for value in passwords:
  10.         file.write(value)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement