Skip to main content

Posts

Showing posts from August, 2020

Random Password Generator Using Python

  A  random password generator  is a software program, hardware device, or online tool that automatically generates a password using parameters that a user sets, including mixed-case letters, numbers, symbols, pronounceability, length, and strength. Here is the simple python code to generate password randomly. #random module import  random print ( "=================\nPassword Generator\n=================" ) print () #you can use more character here characters =  "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!@_#$%&*0123456789" #Input  Number of password Num_Of_pass = int( input ( " How many passwords do you want?: " )) # Input length of password len_Of_pass = int( input ( ' Enter lenth of password you want to generate : ' )) print () print ( "Passwords are: " ) print () #for Number...