print('THE LETTER GAME ! type in a letter and let someone else try to guess what that letter is they can key the leter they guess after you put your letter in also only
letters no numbers / 1 letter = hardest mor letters the easier')
letters=input('enter your letter of choice can be more than 1:')
for counter in range(1):
print('NOT LETTERS !!')
**else:**
** break**
search=input('enter the letter you guess:')
if search in letters:
print('You guessed correct ! ')
print(letters)
else:
print('you got it wrong the correct answers were :')
print(letters)
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.