# 定义学生列表
student_list = [
("小明", 16, 80),
("小强", 20, 79),
("小绿", 29, 46)
]

# 输出
print(student_list)