Saturday, 13 August 2022

Day 30 : Password Authentication using Python

 

#code

import getpass

database = {"clcoding": "976729", "pythonclcoding": "2502"}

username = input("Enter Your Username : ")

password = getpass.getpass("Enter Your Password : ")

for i in database.keys():

    if username == i:

        while password != database.get(i):

            password = getpass.getpass("Enter Your Password Again : ")

        break

print("Verified")


#clcoding.com

Enter Your Username : pythonclcoding
Enter Your Password : ········
Enter Your Password Again : ········
Enter Your Password Again : ········
Verified


0 Comments:

Post a Comment

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (10) C (75) C# (12) C++ (81) Course (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (1) PHP (20) Projects (19) Python (401) R (69) Selenium Webdriver (2) Software (14) SQL (27)