# Attendance Checker
# Process list of student names and checks whether that student is present
names = ["Alex", "Ben", "Chloe"]
for name in names:
# TO COMPLETE: 1. Print out question asking if student is present in class
# TO COMPLETE: 2. If student is present, then print message confirming student is present
# 1. Complete missing code
# 2. Build a dictionary of students marked as present or absent
