#๐ If statement not working
15 messages ยท Page 1 of 1 (latest)
@halcyon trellis
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
input() always returns a string. You're comparing it to an integer in the if statement
watch what happens:
!e
print(1=="1")
@low sequoia :white_check_mark: Your 3.12 eval job has completed with return code 0.
False
literally was gonna type that exact thing
So what you need to do is convert the user input to an int, or just make b a string like b = '1'
I got it thank you all.
TypeInt(b)
Idk remember exactly what the function is called
Search it up @halcyon trellis
i got it thanks
If your question is answered you can close this with !close
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.