Files
Original-Pasha-Code/GuessMyPassword.py
2026-03-11 23:19:32 +00:00

26 lines
491 B
Python

# module
import random
# variables
response1 = "hello"
response2 = "correct"
response3 = "are you james bond (its wrong)"
response4 = "i love pizza"
response5 = "nice to meat you"
response6 = "mind blank"
response7 = "shutting down"
MY_PASSWORD = "MY PASSWORD"
# function defenition
def is_correct(guess,password):
if guess == pasword:
guess_correct = True
else:
guess_correct = False
return guess_correct