init
This commit is contained in:
commit
8851786e67
353 changed files with 36724 additions and 0 deletions
15
adminsystemdb/ttmp.py
Executable file
15
adminsystemdb/ttmp.py
Executable 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()
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue