Is it better to use reversed() function to traverse an array backward? No, from a space complexity point of view, using reversed() function is ineffective. You can use range() construct to traverse an array backward. #python #pythonprogramming #pythontips #pythonloops #code