+ 5
Guess Number Problem
For my elif statement why is it giving me an error? And how to fix https://code.sololearn.com/cAwCU1WrQLIw/?ref=app
24 Respostas
+ 12
Remember that input is always string in Python. You need to convert it to a numerical type (int or float).
+ 5
Remember that the code requires interaction which doesn't really work on sololearn. On sololearn you have to give all inputs before running.
+ 4
Use
guess = int(input())
to convert the input to integer.
Use
guess = float(input())
to convert the input to a floating point number.
The comparison operator ">" cannot be used between a string and a numerical value.
+ 3
I dont get it can you show me an ecample of what you u mean Simon Sauter
+ 3
Okay thanks Simon Sauter
+ 3
Okay, so how do i make the number not change every time you guess? Simon Sauter ravilnicki
+ 3
Or a for loop. Both are possible. If you want the player to guess until they get it right use a while loop. If you want a fixed number of guesses you can use either a while loop or a for loop.
+ 3
There still didnt work
https://code.sololearn.com/cAwCU1WrQLIw/?ref=app
+ 3
Yea, am pretty newand am not really getting what your saying it probably be better in an example you used so i can understand more Simon Sauter
+ 3
So if i used a different code editor it would work?
+ 2
Use a loop to allow multiple guesses.
+ 2
Like a while loop?
+ 2
Okay now its saying something bout an indention block
https://code.sololearn.com/cAwCU1WrQLIw/?ref=app
+ 2
You're almost there:
https://code.sololearn.com/c2ZHFyfv90s4/?ref=app
+ 2
It should work in offline IDEs. Some online editors like sololearn require you to give all input upfront so it can be sent to a server together with the code where it is executed.
If you're on android you can use pydroid3 as offline IDE. On PC you have lots of options.
+ 2
You make everything right. But one notice: when you use input(), you ask somebody to input something in your program. Now it is not obvious... In input possible to write some text for user above somebody said that sololearn works not good with inputs. But in other platform you should write int(input("please, input integer number to find out wheather it odd or even")) this hint helps user to understand what to do.
+ 2
It depends on input.
Input is even than print if statement.
Input is odd than print else statement.
+ 1
Line 10 needs to be indented one more level.
+ 1
You also need to move the guess into the loop.
+ 1
You have to define the variable guess before the loop. Use any value (just make sure it's not the same as number, you can just use number + 1). Otherwise the while condition is undefined for the first iteration.
The actual guessing via input has to be inside the loop.