Python Forum
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Password Generator
#2
Hello Pdelnegro..
I appreciate your interest in getting into practice so early before completion of basics.

In general I directly used some of the following codes to generate password.

I'm not sure of your code, but i just want to share if this helps you in any manner. Ignore if it doesn't.

string.ascii_letters
Concatenation of the ascii (upper and lowercase) letters

string.digits
The string '0123456789'.

string.punctuation
String of ASCII characters which are considered punctuation characters in the C
locale.

print string.ascii_letters
print string.digits
print string.punctuation
Reply


Messages In This Thread
Password Generator - by pdelnegro - Oct-25-2017, 06:12 PM
RE: Password Generator - by missmansirao - Oct-27-2017, 10:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  handy password generator ichabod801 4 8,654 Dec-10-2016, 01:33 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020