Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. def fun():
  2.     numbers = [115, 112, 105, 101, 114, 100, 97, 108, 97, 106, 32, 98, 105, 101, 100, 97, 107, 117]
  3.     result = list()
  4.     for n in numbers:
  5.         result.append(chr(n))
  6.     return ''.join(result)[::-1]
  7.  
  8. if __name__ == "__main__":
  9.     sentence = fun()
  10.     print(sentence)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement