17
0

start list at 1 instead of 0

This commit is contained in:
Benjamin Mako Hill 2021-04-20 11:26:36 -07:00
parent 914f5973c3
commit f590bf88bc

View File

@ -11,5 +11,5 @@ student_list = cc.preferred_names
# print out 100 students
for i in range(100):
print(f"{i}. {cc.coldcall(student_list)} [ ] [ ]\n")
print(f"{i + 1}. {cc.coldcall(student_list)} [ ] [ ]\n")