This repository has been archived on 2026-03-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
pants/python/personal/password.py
2026-03-18 00:46:30 -07:00

8 lines
179 B
Python

password = open('Garry.txt')
secret = password.read()
print("Password?")
query = input()
if query == secret:
print("correct!")
else:
print("NO NO THE ANSWER IS CUCUMBER")