Skip to content

Instantly share code, notes, and snippets.

View keta-dev's full-sized avatar
🏠
Working from home

Miriam Chiketa keta-dev

🏠
Working from home
View GitHub Profile
@keta-dev
keta-dev / advance_atm_simulator.py
Last active March 1, 2026 20:59
ADVANCED ATM SIMULATOR
### 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
@keta-dev
keta-dev / student_score_tracker.py
Last active March 1, 2026 20:59
Python Classwork
# 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"}
}