7 lines
144 B
Python
7 lines
144 B
Python
alien_4 = {'color': 'green', 'points': 5}
|
|
print(alien_4)
|
|
# Delete the second key:value pair from alien_4
|
|
del(alien_4['points'])
|
|
print(alien_4)
|
|
|