Guest User

Untitled

a guest
Jun 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. def zvezdice(string):
  2. out = string.split('*')
  3. for i in range(1,len(out),2):
  4. out[i] = out[i][::-1]
  5.  
  6. return ''.join(out)
  7.  
  8. print(zvezdice('thiS is *sHiBlabal* should this *WoRk'))
Add Comment
Please, Sign In to add comment