Create Lock with Python

 

password=(input("Enter Your Password "))
if password=="sachin":
    print(password,)
    import time
    for i in range(10):
        print("Your application will start in....",i, end='\r')
        time.sleep(1)
    import subprocess
    subprocess.Popen("C:\\Program Files (x86)\\Microsoft\\Edge\\Application\\msedge.exe")
else:
    import webbrowser
    webbrowser.open("C:\\Users\\santo\\OneDrive\\Desktop\\sachin\\failed.html")


 

 

Comments