YouTip LogoYouTip

Python Reversing List

# Python3.x Python Reversing a List [![Image 3: Document Object Reference](#) Python3 Examples](#) Define a list and reverse it. For example: Before reversal: list = [10, 11, 12, 13, 14, 15] After reversal: [15, 14, 13, 12, 11, 10] ## Example 1 def Reverse(lst): return[ele for ele in reversed(lst)] lst =[10,11,12,13,14,15] print(Reverse(lst)) The output of the above example is: [15, 14, 13, 12, 11, 10] ## Example 2 def Reverse(lst): lst.reverse() return lst lst =[10,11,12,13,14,15] print(Reverse(lst)) The output of the above example is: [15, 14, 13, 12, 11, 10] ## Example 3 def Reverse(lst): new_lst = lst[::-1] return new_lst lst =[10,11,12,13,14,15] print(Reverse(lst)) The output of the above example is: [15, 14, 13, 12, 11, 10] [![Image 4: Document Object Reference](#) Python3 Examples](#)
← Django Nginx UwsgiCpp Return Arrays From Functio β†’