Guest User

Untitled

a guest
Oct 20th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. def MakeAccount():
  2. Name = str(input("Enter you name"))
  3. Username = str(input("Enter a new username."))
  4. Password = str(input("Enter a new password."))
  5.  
  6. with open(Name, 'w', newline='') as csvfile:
  7. ACbank = csv.writer(csvfile, delimiter=' ',)
  8. ACbank.writerow([Username])
  9. ACbank.writerow([Password])
Add Comment
Please, Sign In to add comment