-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathch.py
More file actions
39 lines (38 loc) · 749 Bytes
/
ch.py
File metadata and controls
39 lines (38 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import random
from random import randint
import string
import uuid
import os
import time
from time import sleep
from colorama import Fore
import sys
print("")
print(Fore.RED+" "+" Loading....")
sleep(2.0)
print("\n")
print(Fore.GREEN+"""
coder..
""")
sleep(2.0)
print("\n"*90)
print("""
Load . . .
""")
Dmo = """
creater codings
"""
for i in Dmo:
sleep(0.02)
print(i,end='',flush=True)
print()
sleep(2.1)
def random_string_generator(str_size, allowed_chars):
return ''.join(random.choice(allowed_chars) for x in range(str_size))
chars = string.ascii_letters + string.punctuation
size = 28
print("# # # #")
print(Fore.RED+' reporter channel >> ',random_string_generator(size, chars))
print("# # # #")
time.sleep(1)
print ()