Advertisement
IT45200

Untitled

Sep 11th, 2019
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. class Hello():
  2.    
  3.     def run(self):
  4.         p =  lambda x: ( -13214 * x**11 + 956318 * x**10 - 30516585 * x**9 + 564961485 * x**8
  5.                         - 6717043212 * x**7 + 53614486464 * x**6 - 291627605005 * x**5
  6.                         + 1074222731065 * x**4 - 2606048429424 * x**3 + 3927289106268 * x**2
  7.                         - 3265905357360 * x + 1116073728000 ) / 19958400        
  8.         print(bytearray(list(int(x) for x in map(p, range(1, 12)))).decode('UTF-8'))
  9.        
  10. p = Hello()
  11. p.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement