# Python Password Generator
##### THIS SIMPLE PROJECT WAS MADE USING PYTHON LIBRARY FUNCTIONS LIKE `string` & `random`.

* `string.ascii_letters`
	- The concatenation of the ascii_lowercase and ascii_uppercase constants described below. This value is not locale-dependent.

* `string.ascii_lowercase`
	- The lowercase letters <kbd>abcdefghijklmnopqrstuvwxyz</kbd>. This value is not locale-dependent and will not change.

* `string.ascii_uppercase`
	- The uppercase letters <kbd>ABCDEFGHIJKLMNOPQRSTUVWXYZ</kbd>. This value is not locale-dependent and will not change.

* `string.digits`
	- The string <kbd>0123456789</kbd>.

* `string.hexdigits`
	- The string <kbd>0123456789abcdefABCDEF</kbd>.

* `string.octdigits`
The string <kbd>01234567</kbd>.

* `string.punctuation`
	- String of ASCII characters which are considered punctuation characters in the C locale: `!"#$%&'()*+,-./:;<=>?@[\]^_{|}~`
