{"id":12431,"date":"2021-10-01T11:00:40","date_gmt":"2021-10-01T05:30:40","guid":{"rendered":"https:\/\/python-programs.com\/?p=12431"},"modified":"2021-11-22T18:39:28","modified_gmt":"2021-11-22T13:09:28","slug":"secure-passwords-using-python","status":"publish","type":"post","link":"https:\/\/python-programs.com\/secure-passwords-using-python\/","title":{"rendered":"Secure Passwords Using Python"},"content":{"rendered":"

Creating a strong password is essential in everyone’s life nowadays in order to keep your accounts safe and secure. Passwords that are simple and easy to guess can be readily hacked. To avoid this problem, we’ll show you how to create your own safe and secure password using simple Python code.<\/p>\n

Examples:<\/strong><\/p>\n

Example1:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Original Password  = Italian<\/pre>\n

Output:<\/strong><\/p>\n

The new modified password =  |t@l1@n<\/pre>\n

Example2:<\/strong><\/p>\n

Input:<\/strong><\/p>\n

Original Password = albertos<\/pre>\n

Output:<\/strong><\/p>\n

The new modified password = @lbert0$<\/pre>\n

Secure Passwords Using Python<\/h2>\n

Below are the ways to write a program that creates the secured passwords.<\/p>\n