Skip to content

Silvokyda/Python-Password-Generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Python-Password-Generator

1. import random
2. import logging
3. 
4. lower_case="abcdefghijklmnopqrstuvwxyz"
5. upper_case="ABCDEFGHIJKLMNOPQRSTUVWXYZ"
6. number="1234567890"
7. symbols="!.@#$%^&*()"
8.
9. Use_for = lower_case + upper_case + number + symbols
10.password_length = 8
11.
12.password = "".join(random.sample(Use_for, password_length))
13.
14.print("Your Generated Password is:", password)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages