Guest User

Untitled

a guest
Dec 29th, 2015
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def yoba(s):
  2.     if len(s) < 2:
  3.         return s
  4.     head, *body, tail = s
  5.     return tail + str.join("", body) + head
Advertisement
Add Comment
Please, Sign In to add comment