MCQs > IT & Programming > Python > Which is the correct way to print a list called theList in reverse order?

Python MCQs

Which of the following is the correct way to print a list called theList in reverse order?

Answer

Correct Answer: for i in reversed(theList): print i

Explanation:

Note: This Question is unanswered, help us to find answer for this one

Python Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

More Python MCQ Questions