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)
-
Notifications
You must be signed in to change notification settings - Fork 0
Silvokyda/Python-Password-Generator
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published