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