Advertisement
zeromega64twenty

6699 printer

Dec 9th, 2023
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.77 KB | None | 0 0
  1. from colorama import Fore, Style
  2. import time
  3.  
  4. p, n, s = print, 6699, str
  5. colors = [Fore.RED, Fore.GREEN, Fore.YELLOW, Fore.BLUE, Fore.MAGENTA, Fore.CYAN, Fore.WHITE]
  6.  
  7. while True:
  8.     for i in range(10):
  9.         color = colors[i % len(colors)]
  10.         p(color + s(n) + Style.RESET_ALL)
  11.         p(color + s(int(s(n))) + Style.RESET_ALL)
  12.         p(color + f"{n}" + Style.RESET_ALL)
  13.         p(color + s(sum(map(int, s(n)))) + Style.RESET_ALL)
  14.         p(color + s(6600 + 99) + Style.RESET_ALL)
  15.         p(color + "66" + "99" + Style.RESET_ALL)
  16.         p(color + f"{6}{6}{9}{9}" + Style.RESET_ALL)
  17.         p(color + "6" * 2 + "9" * 2 + Style.RESET_ALL)
  18.         p(color + s(int("66" + "99")) + Style.RESET_ALL)
  19.         p(color + "".join(map(s, [6, 6, 9, 9])) + Style.RESET_ALL)
  20.  
  21.  
Tags: woke
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement