To generate random passwords
Generating random passwords using python
- First we imported the string library
- Then we imported the random module, random import * imports all functions from a module called random, but not random itself
- Then we defined a string 'characters' which is a combination of digits,symbols and letters
- Then we joined them using randint function
- Finally we print the randomly generated password
User needs a Python IDE to run the program
YASH KATARIA