Advertisement
zeromega64twenty

How I write 1000 lines of code

Aug 24th, 2023 (edited)
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.44 KB | Jokes | 0 0
  1. """
  2. Copyright (c) 2023 Zeromega
  3. Drop a link or a Sub on one of my videos if this script help you, copy the link below
  4. https://www.youtube.com/channel/UCfqUJ4rmk6W-ZAjDtkBZ1CA?sub_confirmation=1
  5. """
  6.  
  7. import threading
  8.  
  9. def p_(*args):
  10.     string = ''.join(chr(x) for x in args)
  11.     print(string)
  12.  
  13. def c_(nested, a, b, c, d, e, f, g, h, i):
  14.     for num in range(10):
  15.         if nested == 0:
  16.             p_(49, 48, 48, 48, 32, 108, 105, 110, 101, 115, 32, 111, 102, 32, 99, 111, 100, 101, 32, 45, 32, a, b, c, d, e, f, g, h, i, num)
  17.         else:
  18.             c_(nested - 1, a, b, c, d, e, f, g, h, i)
  19.  
  20. p_(111, 118, 101, 114)
  21. threads = []
  22.  
  23. for a in range(10):
  24.     for b in range(10):
  25.         for c in range(10):
  26.             for d in range(10):
  27.                 for e in range(10):
  28.                     for f in range(10):
  29.                         for g in range(10):
  30.                             for h in range(10):
  31.                                 for i in range(10):
  32.                                     thread = threading.Thread(target=c_, args=(5, a, b, c, d, e, f, g, h, i))
  33.                                     threads.append(thread)
  34.                                     thread.start()
  35.  
  36. for thread in threads:
  37.     thread.join()
  38.  
  39. p_(69, 120, 116, 114, 101, 109, 101, 108, 121, 32, 99, 111, 109, 112, 108, 101, 120, 32, 99, 111, 100, 101, 32, 101, 120, 101, 99, 117, 116, 101, 100, 32, 115, 117, 99, 99, 101, 115, 115, 102, 117, 108, 108, 121)
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement