Python language basics 7: boolean values

Introduction

In the previous post we looked at the difference between integer and float-point number division in Python. In this post we’ll look at the third built-in primitive type besides integers and floats: the boolean type.

If you have any computer programming background whatsoever then you’ll know that a boolean variable can have two states: true or false. Booleans play a central role in control flows such as ‘if’ when you’re testing whether some state is true or false.

Booleans in Python

The two states are represented by the True and False keywords, both capitalised:

trueState = True
falseState = False

Booleans can also be constructed from the bool() constructor. Here are some examples with integers where only 0 yields false, all other values result in true:

print(bool(0))
print(bool(123))
print(bool(-12))

Read all Python-related posts on this blog here.

Advertisement

About Andras Nemes
I'm a .NET/Java developer living and working in Stockholm, Sweden.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

Elliot Balynn's Blog

A directory of wonderful thoughts

Software Engineering

Web development

Disparate Opinions

Various tidbits

chsakell's Blog

WEB APPLICATION DEVELOPMENT TUTORIALS WITH OPEN-SOURCE PROJECTS

Once Upon a Camayoc

Bite-size insight on Cyber Security for the not too technical.

%d bloggers like this: