Page 1 of 1

Suppose there is a list such that: l=[2,3,4]. If we want to print this list in reverse order, which of the following met

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
a) reverse(l)
b) list(reverse[(l)])
c) reversed(l)
d) list(reversed(l))