# Starter file for autograder assignment
# Author: Penny Anderson
# Date:  Mar 15 2015


#######################################################
#
#    Save this file as autograder.py and add your code to it.
#
#######################################################

from random import randint

#######################################################
#
#    Put your code after this comment block
#
#######################################################

# Problem 1: autograder

# Problem 2a: run_autograder

# Problem 2b: test_autograder

# Problem 3: assign_grades

#######################################################
#
#    Helpful code for you to use
#
#######################################################

def show_grades(grades) :
    print("Name", " " * (19 - len("Name")), "Grade")
    for (k, v) in grades.items() :
        print(k, " " * (20 - len(k)), v)

