python-CSD-kursu/python/list_example_003.py
2025-06-04 14:59:30 +03:00

4 lines
60 B
Python

x = [1, 2, 3, 4, 5]
y = list(reversed(x))
print(x)
print(y)