PyPassword generator
This commit is contained in:
parent
6d1f32dc4b
commit
50a871353c
1 changed files with 1 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ pass_numbers = int(input("How many numbers would you like\n"))
|
|||
l = random.choices(letters, k=pass_letters)
|
||||
s = random.choices(symbols, k=pass_symbols)
|
||||
n = random.choices(numbers, k=pass_numbers)
|
||||
|
||||
password = l + s + n
|
||||
random.shuffle(password)
|
||||
print(''.join(password))
|
||||
Loading…
Add table
Add a link
Reference in a new issue