Dark Mode

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on May 25, 2022. It is now read-only.

Latest commit

History

History

Random_password_generator

Folders and files

NameName
Last commit message
Last commit date

parent directory

..

README.md

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 abcdefghijklmnopqrstuvwxyz. This value is not locale-dependent and will not change.
  • string.ascii_uppercase

    • The uppercase letters ABCDEFGHIJKLMNOPQRSTUVWXYZ. This value is not locale-dependent and will not change.
  • string.digits

    • The string 0123456789.
  • string.hexdigits

    • The string 0123456789abcdefABCDEF.
  • string.octdigits The string 01234567.

  • string.punctuation

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