Jump to content
Tuts 4 You

Nuitka 2.1.5 (Python 3.11)


1 Screenshot

Hi 

Nuitka compiled python 3.11 file 

Correct password doesn't important 

Just patching

Thanks

def check_password(password):
    specific_password = "secret110"
    if password == specific_password:
        return True
    else:
        return False

if __name__ == "__main__":
    user_password = input("Enter the password: ")
    if check_password(user_password):
        print("Good boy!")
    else:
        print("Bad boy!")

?


User Feedback

Recommended Comments

There are no comments to display.

×
×
  • Create New...