Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. import random
  2. import sys
  3. from termcolor import colored
  4.  
  5. while 1:
  6.     for i in range(1):
  7.         print("")
  8.         for j in range(150):
  9.             bit = colored(str(random.randint(0, 1)), "green")
  10.             sys.stdout.write(bit)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement