DEV Community

Cover image for How to make simple password manager in python
VECTOR3Studio
VECTOR3Studio

Posted on

How to make simple password manager in python

Hello!!!

In this post I will tell you how to make a simple password manager in python. So let's get into.

As First thing we need to do is set your password for password manager and add user Input, so you can type the password.

Password = "1111"
PasswordGues = input("Password: ")
Enter fullscreen mode Exit fullscreen mode

Next Thing we need to add is if statement, which checks if the entered password is correct.

Password = "1111"
PasswordGues = input("Password: ")
if(Password == PasswordGues):
Enter fullscreen mode Exit fullscreen mode

And Now we can Print our password for reddit for example.

Password = "1111"
PasswordGues = input("Password: ")
if(Password == PasswordGues):
print("Reddit Password: BUY_GME")
Enter fullscreen mode Exit fullscreen mode

Now we have all done!

Thanks for reading my article. If was this helpfull, you can leave a like or you can buy me a coffee. Thanks!
Alt Text

Top comments (0)