mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
4b43a2f507
Uses import random for namespace cleanliness Uses list instead of string for 'chars' variable in order to shuffle, increases randomness Instead of string formatting, uses string concatenation because (currently) it is simpler
15 lines
473 B
Python
15 lines
473 B
Python
import string
|
|
import random
|
|
|
|
letters = [letter for letter in string.ascii_letters]
|
|
digits = [digit for digit in string.digits]
|
|
symbols = [symbol for symbol in string.punctuation]
|
|
chars = letters + digits + symbols
|
|
random.shuffle(chars)
|
|
|
|
min_length = 8
|
|
max_length = 16
|
|
password = ''.join(random.choice(chars) for x in range(random.randint(min_length, max_length)))
|
|
print('Password: ' + password)
|
|
print('[ If you are thinking of using this passsword, You better save it. ]')
|