示例#1
0
def show_final_results(students):
	print('Total of students: ' + str(len(students)))
	try:
  		avg = Util.average_from_students(students)
  		print('The class avg is: ' + str(avg))
	except:
  		print("You need to type the correct input types to calculate metrics")
	
	Util.byeBye()