students = sorted(students)

for number, name in enumerate(students):
    print("번호: {}, 이름: {}".format(number+1, name))