Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: Python  |  size: 0.14 KB  |  hits: 21  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. def front_back(str):
  2.        
  3.        
  4.         L = list(str)
  5.        
  6.         L[0], L[-1] = L[-1], L[0]
  7.        
  8.         return ''.join(L)
  9.        
  10. nigger = front_back('ab')
  11.  
  12. print nigger