This commit is contained in:
relaxed 2024-08-18 03:34:33 +05:00
commit 8851786e67
353 changed files with 36724 additions and 0 deletions

15
adminsystemdb/ttmp.py Executable file
View file

@ -0,0 +1,15 @@
import random
def main():
n = 20
al = "abcdefghigklmnopqrstuvwxyz"
thing = ""
for i in range(0, 16):
a = random.randint(0, 1)
if a == 0:
thing += al[random.randint(0, len(al))]
else:
thing += str(random.randint(0, 10))
print(thing)
input()