gradebook = [["physics", 98], ["calculus", 97], ["poetry", 85], ["history", 88]] print(gradebook) # now append other values that you wish to add gradebook.append(["computer science", 100]) print(gradebook)