Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. output = ""
  2.  
  3. def tupper_function(x, y):
  4.  
  5. k = 960939379918958884971672962127852754715004339660129306651505519271702802395266424689642842174350718121267153782770623355993237280874144307891325963941337723487857735749823926629715517173716995165232890538221612403238855866184013235585136048828693337902491454229288667081096184496091705183454067827731551705405381627380967602565625016981482083418783163849115590225610003652351370343874461848378737238198224849863465033159410054974700593138339226497249461751545728366702369745461014655997933798537483143786841806593422227898388722980000748404719
  6.  
  7. return 0.5 < (((k + y) // 17) // (2 ** ((17 * x) + (y % 17)))) % 2
  8.  
  9. binary_array = [[tupper_function(x, y) for x in range(106)] for y in range(17)]
  10.  
  11. for row in binary_array:
  12. for value in row[::-1]:
  13. if value:
  14. output += "█"
  15. else:
  16. output += " "
  17. output += "\n"
  18.  
  19.  
  20. print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement