Jun-11-2020, 11:57 PM
bool b = num == 100why this doesn't work?
bool b = (num == 100) this doesn't work?
|
Jun-11-2020, 11:57 PM
bool b = num == 100why this doesn't work? num = 100 bool(num) bool(num) == 100 num == 100 b = num == 100 b
I welcome all feedback.
The only dumb question, is one that doesn't get asked. My Github How to post code using bbtags Download my project scripts
Jun-12-2020, 02:18 AM
What do you expect that line to do?
Python doesn't declare the type of the variable, so you wouldn't say int x = 10So if you get rid of the bool at front you end up with b = num == 100which can be parsed as b = (num == 100) |
|