Advertisement
Guest User

Untitled

a guest
May 3rd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. info = []
  2. inputs = [raw_input("Username: "), raw_input("Password: "),raw_input("E-mail: "), raw_input("Additional Information: ")]
  3. COUNTER = 0
  4. for input in inputs:
  5. info[COUNTER] = input
  6. COUNTER = COUNTER + 1
  7. for data in info:
  8. print data+"\n"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement