Advertisement
Guest User

Untitled

a guest
Dec 14th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. def inverse(lista):
  2.     nlist=lista[::-1]
  3.     return nlist
  4.  
  5.  
  6.  
  7. lista = ['a', 'e', 'i', 'o', 'u']
  8. print(inverse(lista))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement