38.py 1 2 3 4 5 6 7 8correct_password = "python123" while True: password = input("Enter Password : ") if password == correct_password: print("Correct Password") break print("Wrong Password")