preloader

How to make a strong password generator in python

Today we will see how to make strong password generator in python. You may have heard of that you need to enter a strong password on websites, apps or anything for security reasons. Hackers are very smart they have automatic tools to crack your password.

If your password is small or weak or just a name of a person, country or your dog than your account can be easily compromised that means hacked so today we will create our own strong password generator in python.

This project is very simple and easy to do you can create this project with me and submit it as your assignments or use it for generating strong password.

If you want more projects like this than you visit our coding projects page there we have many projects uploaded with source you can easily get projects just visit coderzway projects.

Make a strong password generator in python

Contents

So now we will create our password generator in python and if you are new to python than you can follow this article but before starting if you don’t have python installed than you need to download python in your computer.

You can download python from here – Download python here.

Create a python file

After downloading python you have to create a python file to write python code you can create a new folder and create a python file with .py extension.

Then open the file in a code editor I am using vs code as my code editor you can use pycharm or atom but I like vs code because it is small, fast and there are great extensions.

You can download vs code from here – download vs code

Now open the file and copy the below code I will explain what it does below

Copy the code

Now you need to run the python file you can do it by typing this command prompt or terminal at the file location enter python and your filename like this

Output

Below image is the output of the above code as you could see it prints a random password of 12 characters this is very strong password generated in python

Explaination

You need to import all these three modules all these modules come with python so you don’t need to install anything

  • random – for generating a random digit, alphabets and symbols
  • array – for combining lists
  • string – this module will give us the digits, symbols ,all lowercase and uppercase alphabets.

you can change the length of the password you want to make it lower than 5 it will give a error.

Summary

So this was a strong password generator in python I want everyone to try to create this project and you can email me at coderzway@gmail.com.

I hope you found this project helpful please share this article with your friends and teachers and if you want more projects like this do subscribe to our newsletter for daily blog updates thank you for reading have a nice day.

Spread the love

Related Post

Leave a Reply

Your email address will not be published. Required fields are marked *