5 lines
83 B
Python
5 lines
83 B
Python
cars = ['bmw', 'audi', 'toyota', 'subaru']
|
|
print(cars)
|
|
|
|
cars.reverse()
|
|
print(cars)
|