Python Forum
bool b = (num == 100) this doesn't work?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
bool b = (num == 100) this doesn't work?
#1
bool b = num == 100
why this doesn't work?
Reply
#2
num = 100
bool(num)
bool(num) == 100
num == 100
b = num == 100
b
Output:
True False True True
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


Reply
#3
What do you expect that line to do?

Python doesn't declare the type of the variable, so you wouldn't say
int x = 10
So if you get rid of the bool at front you end up with

b = num == 100
which can be parsed as

b = (num == 100)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIP doesn't work YKR 1 465 Mar-28-2025, 02:10 PM
Last Post: snippsat
  I'm trying to install python 3.11.11 on windows 10 - it doesn't work Petonique 2 1,477 Feb-04-2025, 05:42 PM
Last Post: snippsat
  Numpy, array(2d,bool), flipping regions. MvGulik 2 940 Oct-27-2024, 11:06 AM
Last Post: MvGulik
  Extending list doesn't work as expected mmhmjanssen 2 1,304 May-09-2024, 05:39 PM
Last Post: Pedroski55
  Why doesn't calling a parent constructor work with arbitrary keyword arguments? PurposefulCoder 4 1,860 Jun-24-2023, 02:14 PM
Last Post: deanhystad
  Why doesn't this code work? What is wrong with path? Melcu54 7 3,384 Jan-29-2023, 06:24 PM
Last Post: Melcu54
  color code doesn't work harryvl 1 1,759 Dec-29-2022, 08:59 PM
Last Post: deanhystad
  client.get_all_tickers() Doesn't work gerald 2 2,540 Jun-16-2022, 07:59 AM
Last Post: gerald
  pip doesn't work after Python upgrade Pavel_47 10 6,598 May-30-2022, 03:31 PM
Last Post: bowlofred
  For Loop Works Fine But Append For Pandas Doesn't Work knight2000 2 2,946 Dec-18-2021, 02:38 AM
Last Post: knight2000

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020