python的內置庫string是個好東西,使用string可以用來生成密碼,或者驚喜密碼強度檢測;
隨機生成密碼
說到隨機,就不能不提python中的另一個內置庫random;
random是一個隨機數函數,包含多個生成隨機數的方法:
string是python中一個內置的字符串;
whitespace = ' \t\n\r\v\f'
ascii_lowercase = 'abcdefghijklmnopqrstuvwxyz'
ascii_uppercase = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
ascii_letters = ascii_lowercase + ascii_uppercase
digits = '0123456789'
hexdigits = digits + 'abcdef' + 'ABCDEF'
octdigits = '01234567'
punctuation = r"""!"#$%&'()*+,-./:;<=>[email protected][\]^_`{|}~"""
printable = digits +
In daily work , Requirements f
Composition of procedure The