fork(14) download
  1. stra = 'This is stirng'
  2. revword = stra.split()
  3. revword.reverse()
  4. revword=''.join(revword)
  5. print revword
Success #stdin #stdout 0.08s 10840KB
stdin
Standard input is empty
stdout
stirngisThis