Advertisement
Guest User

Untitled

a guest
May 1st, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. input = [raw_input("Username: "), raw_input("Password: "),raw_input("E-mail: "), raw_input("Additional Information: ")]
  2. print input[0]+"\n"+input[1]+"\n"+input[2]+"\n"+input[3]
  3. FILE = open("C:\Users\Jake\Desktop\PythonScrip\Accounts.txt", "a")
  4. FILE.write(input[0] + " "+input[1] + " "+input[2] +" "+ input[3] + "\n")
  5. print "Details Saved!"
  6. j = raw_input("Press any key to continue <enter> ")
  7. FILE.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement