Guest User

Untitled

a guest
Mar 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def function(a):
  2. temp = string.split(' ');
  3. return temp[::-1];
  4.  
  5. string = 'My name is Michele';
  6. print(' '.join(function(string)));
Add Comment
Please, Sign In to add comment