initial commit
This commit is contained in:
19
randomPwd/randomPwd.py
Normal file
19
randomPwd/randomPwd.py
Normal file
@ -0,0 +1,19 @@
|
||||
import random
|
||||
import string
|
||||
|
||||
def randomPwd(length):
|
||||
chars = string.ascii_letters + string.digits
|
||||
pwd = ''.join(random.choice(chars) for i in range(length))
|
||||
print(pwd)
|
||||
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
||||
randomPwd(18)
|
Reference in New Issue
Block a user