This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### ADVANCED ATM SIMULATOR ### | |
| """ | |
| FEATURES | |
| 1. Multiple users name with unique account number and pins | |
| 2. Pin verifications (3 trials before account locks) | |
| 3. Balance Inquiry | |
| 4. Cash Withdarwal with balance check | |
| 5. Cash deposits | |
| 6. Fund Transfer |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # List of students | |
| students = [("Miriam", 15), ("Enitan", 18), ("Riley", 13)] | |
| # Store additional info for each student in a dictionary: | |
| student_info = { | |
| "Miriam": {"age": 13, "grade": "8"}, | |
| "Enitan": {"age": 14, "grade": "8"}, | |
| "Riley": {"age": 13, "grade": "7"} | |
| } |