ellesehc

File I/O draft

Mar 27th, 2015
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. def bank_account(username, password, cash):
  2.     account_file = open('C:\Users\cIroldan\Desktop\ccount_info.txt', 'w')
  3.     account_file.write(username + password + cash)
  4.     account_file.close()
  5.  
  6. bank_account('meow','12345','100')
Advertisement
Add Comment
Please, Sign In to add comment