here is the code I have so far. My error lies in when i run it. If the nothing is entered for the Guess then it says to few but if I type a single letter it says to many. where it only needs to say to many if its longer than the secret phrase.
secret = 'BRINGCOFFEE'
guess_1 = str(len('bringcoffee'))
guess_2 = str(len('bringcoffee'))
while(secret != True):
phrase = input('Guess the Secret phrase! \nGuess:')
if phrase < guess_1:
print('Too Few Characters')
elif phrase > guess_2:
print('Too Many Characters')