17.7k views
5 votes
Write the code to add another key/value to the below dictionary (Python)

Write the code to add another key/value to the below dictionary (Python)-example-1

1 Answer

2 votes

Answer:

myNumbers['Sixty'] = 60

Step-by-step explanation:

You can use the subscript notation to add a value.

User George Ananda Eman
by
8.0k points