From f590bf88bc365b092f938de8dcc36a061a5cb2ea Mon Sep 17 00:00:00 2001 From: Benjamin Mako Hill Date: Tue, 20 Apr 2021 11:26:36 -0700 Subject: [PATCH] start list at 1 instead of 0 --- coldcallbot-manual.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- 2.39.2