Hi Eli!
You have a lot of calls to input() in your code.
When requesting help on input you get the following output:
>>> help(input)
Help on built-in function input:
input(...)
input([prompt]) -> value
Equivalent to eval(raw_input(prompt)).
As you can see, the data you input is put
I am reading "Python Programming for the absolute beginner" and am on chapter 4 challenges.It says to create a program to let the player guess letters of the word (I haven't tried to incorporate a guess limit yet like it says)
my program looks fine to me, but I get a fat juicy error when I run itMy