Thanks for that. When posting code, it’s helpful - especially with Python, where the indentation is important - to format it on here using the code blocks like this:
```
my code goes here
```
which would render as:
my code goes here
That way, we can see the code as is - otherwise the forum removes any whitespace which makes it harder to follow.
Can you edit your post, and re-paste the code as a codeblock please? 
The error that’s stopping your code is this one:
File “/Users/Family/Documents/9 Lives.txt”, line 21, in update_clue
unknown_letters = unknown_letters - 1
TypeError: unsupported operand type(s) for -: ‘NoneType’ and ‘int’
but when I run your code, having re-indented it myself, I don’t get that error.
Your code is somehow attempting to subtract 1
, which is an int
type, from the value of unknown_letters
but at the point it’s making the attempt unknown_letters = None
. Subtraction isn’t a valid operation for a NoneType
variable, so Python throws the error you’re seeing.
Can you re-paste the code, formatted as I’ve shown you with the ``` before and after, so we can see how you’ve got it written? I must’ve either fixed something or changed something because it doesn’t run the same way for me…