Below are a few things I learned I could do with the Boolean Data Type
Before Python I was learning how to code with Microsoft's Small Basic. It also has Boolean features e.g. I can work with compound conditions using the built in and & or.
The difference between Small Basic and Python is that with Python I can access the Boolean information (True/False) as demonstrated by my 1 line code above. I know Small Basic is a very simple language and Python is well-known to be a very powerful language. I'd like to know why the Boolean information is accessible in Python? Which aspect of coding does it enhance?
P. S. The course I'm taking explicitly states we shouldn't do the following:
It's the same thing as
print(str(bool(3 == 3)))I also have a fair understanding of how Boolean logic (and/or/not) works.
Before Python I was learning how to code with Microsoft's Small Basic. It also has Boolean features e.g. I can work with compound conditions using the built in and & or.
The difference between Small Basic and Python is that with Python I can access the Boolean information (True/False) as demonstrated by my 1 line code above. I know Small Basic is a very simple language and Python is well-known to be a very powerful language. I'd like to know why the Boolean information is accessible in Python? Which aspect of coding does it enhance?
P. S. The course I'm taking explicitly states we shouldn't do the following:
if 3 > 2 == True:which is I think comparing Boolean data.
It's the same thing as
if 3 > 2:Thank you.