This is different from other projects because it is simpler and the goal is to see how fast the computer can guess your number.
There is something wrong with the code below:
number = input("Please enter a number:")
guess = 0
while guess < number:
guess += 1
print (guess)
When I input let's say 5, then I get the following message:
Traceback (most recent call last):
File "..\Playground\", line 4, in <module>
while guess < number:
TypeError: unorderable types: int() < str()