Explore
Courses
Batches
Sketches
Statistics
Code a Pookkalam
Jobs
Devsprint
People
Course Creation
Create a Course
Guidelines
Resources
Support
Blogs
My Profile
About Us
Login
Sketches
0
Reversed_version_2.O(New_way_explored)
By
ARJUN
Run
def reversed_version_2(list): reverse_list = [list[i] for i in range(len(list)-1, -1, -1)] return reverse_list result = reversed_version_2(['a', 'r', 'j', 'u', 'n']) print(result)
Comments
Want to discuss?
Post it here, our mentors will help you out.
Login