Create login interface by id and password in Python
View All Python Programs Source Code (Method -1) id=input(“Enter your Id: “) pas=int(input(“Enter your password : “)) if id==”brcinstitute”: if pas==123: print(“Login Success”) else: print(“Password is wrong”) else: print(“Id is wrong”) Output Enter your Id: brcinstituteEnter your password : 78Password is wrong Source Code (Method -2) id=input(“Enter your Id: “) […]
Create login interface by id and password in Python Read More »