#Accessing and modifying Dictionary Elements
dict = {"Name": "Terry", "score1": 80}
dict["score1"] = dict["score1"] + 10
dict["score2"] = 92
print(dict["score2"])
print(len(dict))