Suppose There Is A List Such That L234 If We Want To Print This #623
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 methods should be used?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 Built-in Functions - Python Built-in Functions - Quiz No.3.
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 methods should be used?
reverse(l)
list(reverse[(l)])
reversed(l)
list(reversed(l))