From: Benjamin Mako Hill Date: Tue, 20 Apr 2021 18:26:36 +0000 (-0700) Subject: start list at 1 instead of 0 X-Git-Url: https://code.communitydata.science/coldcallbot-discord.git/commitdiff_plain/f590bf88bc365b092f938de8dcc36a061a5cb2ea start list at 1 instead of 0 --- diff --git a/coldcallbot-manual.py b/coldcallbot-manual.py index 3bb580c..a4268ea 100755 --- a/coldcallbot-manual.py +++ b/coldcallbot-manual.py @@ -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")