Skip to content

Instantly share code, notes, and snippets.

@mohdjishin
Last active August 4, 2021 19:28
Show Gist options
  • Save mohdjishin/fa21aa455f8eea0ba79f3171f58cddd9 to your computer and use it in GitHub Desktop.
Save mohdjishin/fa21aa455f8eea0ba79f3171f58cddd9 to your computer and use it in GitHub Desktop.
import random
import time
for x in range(20):
symbol = ['W', 'h', 'o', 'I', 'i', 's', 'T', 'C', 'P', '~', 'P', '*', 'H', 's', 'q', 'O', 'l', 'v', 'd', 'm', 'L', '0']
for s in range(9):
print(random.choice(symbol), end='')
time.sleep(0.12)
print(end='\r')
print('Whois~TCP')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment