7 lines
255 B
Python
7 lines
255 B
Python
alien_0 = {'color': 'green', 'points': 5 }
|
|
#print(f" The color of the alien is: {alien_0 ['color']}")
|
|
#print(f" The number of points on the alien is: {alien_0 ['points']}")
|
|
print(alien_0)
|
|
alien_0['x-position'] = 0
|
|
alien_0['y-position'] = 25
|
|
print(alien_0) |