Skip to content

Instantly share code, notes, and snippets.

@bamlak4
bamlak4 / Student_task_tracker.py
Created February 23, 2026 16:42
Python class work:student task tracker
students = [
("Ayomide", 15),
("Tunde", 18),
("Chinelo", 12)
]
student_info = {
"Ayomide": {"age": 13, "grade": "8"},
"Tunde": {"age": 14, "grade": "8"},
"Chinelo": {"age": 13, "grade": "7"}