Add extra prompt when inputting student names
This commit is contained in:
@@ -32,7 +32,7 @@ def getMark(test_number, student_index, max_mark):
|
||||
# do this for all students
|
||||
for i in range(number_of_students):
|
||||
# retrieve and store student's name
|
||||
student_names.append(input("Name: "))
|
||||
student_names.append(input("Student %d name: " % (i + 1)))
|
||||
|
||||
# do this for all students
|
||||
for i in range(number_of_students):
|
||||
|
||||
Reference in New Issue
Block a user