Drag from here
j
=
j
-
1
list1
=
[
1
,
2
,
3
,
4
,
5
]
new_list
=
[
0
]
*
len
(
list1
)
print
(
new_list
)
for
i
in
range
(
len
(
list1
)):
new_list
[
j
]
=
list1
[
i
]
j
=
len
(
list1
)
Construct your solution here
New instance
Get feedback
Construct a program which creates a new list that is the reverse of the orginal list.