Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.18 KB | None | 0 0
  1. import random
  2. import sys
  3. import time
  4. import os
  5. os.system('clear')
  6. def print(s):
  7.     for c in s + '\n':
  8.         sys.stdout.write(c)
  9.         sys.stdout.flush()
  10.         time.sleep(random.random() * 0.002)
  11.        
  12. print('\n')
  13. print(' ██████╗  █████╗ ███╗   ███╗██████╗ ██╗██████╗ ███████╗')
  14. print('██╔════╝ ██╔══██╗████╗ ████║██╔══██╗██║██╔══██╗╚══███╔╝')
  15. print('██║  ███╗███████║██╔████╔██║██████╔╝██║██████╔╝  ███╔╝ ')
  16. print('██║   ██║██╔══██║██║╚██╔╝██║██╔══██╗██║██╔══██╗ ███╔╝  ')
  17. print('╚██████╔╝██║  ██║██║ ╚═╝ ██║██████╔╝██║██║  ██║███████╗')
  18. print(' ╚═════╝ ╚═╝  ╚═╝╚═╝     ╚═╝╚═════╝ ╚═╝╚═╝  ╚═╝╚══════╝')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement