Password generator in Python is used to create a unique strong password which will be helpful to people.
The given packet is to generate a password using Python code.The code first asks the user the length of the password. The components of the password is represented in the form of array. The random method is used to select one character from each array. Random.shuffle() is used to generate a unique password each time to ensure that the password does not follow the same pattern. The system will produce a unique password each time when the code gets executed
Submitted by shivani sunil kakde (Shivanik5)
Download packets of source code on Coders Packet
Comments