4 lines
120 B
Python
4 lines
120 B
Python
alien_0 = {'color': 'green', 'points': 5}
|
|
|
|
new_points = alien_0['points']
|
|
print(f"You just earned {new_points} points!") |