6 lines
145 B
Python
6 lines
145 B
Python
motorcycles = ['honda', 'yamaha', 'suzuki']
|
|
print(motorcycles)
|
|
|
|
popped_motorcycle = motorcycles.pop()
|
|
print(motorcycles)
|
|
print(popped_motorcycle) |