4 lines
60 B
Python
4 lines
60 B
Python
x = [1, 2, 3, 4, 5]
|
|
y = list(reversed(x))
|
|
print(x)
|
|
print(y)
|