182days

Text File (Survey)

May 10th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. #basic user survey that writes to a file
  2. x = input("what is your name?")
  3. y = input("what pet do you have?")
  4. myobj=open("results.txt","a")
  5. myobj.write(x + " " + y + "\n")
  6. myobj.close()
Add Comment
Please, Sign In to add comment