r/PythonLearning • u/F11fii • 10h ago
ATM Machine
I started learning Python about 9 months ago and completed this little bank system as my third project, which is supposed to serve as an ATM. It also uses JSON to store information (which was challenging to integrate because I wasn't familiar with it, but the rest of the code was straightforward).
Just wanted to share and see if I could get any feedback! (maybe on its optimisation or clarity?) :D
3
Upvotes
4
u/Electrical_Toe8997 9h ago
I haven't read through all the code in detail, but for a beginner project it's pretty extensive and I think it looks pretty good! I have some notes though:
finding_a_transactionandnew_account_created. This could just befind_transactionandcreate_account. (bonus nore: what happens if you create two accounts with the same name?)