I suggest it's just a simlpe tiny thing that has to be done to solve this but I simply can't figure it out! I hope anyone can help me.
Here's what I koppied from a learnbook for python.
>>> secret = 1337
>>> guess = 0
>>> l = 0
>>> while guess != secret:
... guess = input("Raten Sie: ")
... if guess < secret:
... print "zu klein"
... if guess > secret:
... print "zu groß"
... l = l + 1
...
Raten Sie: Traceback (most recent call last):
File "<input>", line 2, in <module>
EOFError: EOF when reading a line
At first I tried to change it for my use immidiately but this Error irritated me so I tried to use the original. But even that gives me the same Error concerning <input> in line 2!
I already tried different things to solve it myself but it didn't work out -,-