I've been using the python tutorial and i cannot figure out what I am supposed to do for the section of the tutorial which says:
# (name, age)
students = [
('Dave', 12),
('Sophia', 13),
('Sam', 12),
('Kate', 11),
('Daniel', 10)
]
# Now write a loop to print each of the students' names and age
Please Help!