You can convert a string value s
to a Boolean value using the Python function bool(s)
.
Here are a few examples:
print(bool('False')) # True print(bool('True')) # True print(bool('')) # False print(bool('xkcd')) # True print(bool('1')) # True print(bool('0')) # True
As you can see, any string will be converted to the Boolean value True
–with one exception: the empty string ''
.
This is contra-intuitive for many people because they think that the string 'False'
should be converted to the Boolean value False
. However, this is not the case.
Python is said to be ‘truthy’ which means that it internally converts any object into a truth value if needed. Here’s an example:
x = 'hello world' y = [] if y: print(x) elif x: print('42') # 42
There is no need to convert the list y
or the string x
to a Boolean value using the bool()
function–Python does it for you!
π Recommended Tutorial: How to Convert Boolean to String in Python?

While working as a researcher in distributed systems, Dr. Christian Mayer found his love for teaching computer science students.
To help students reach higher levels of Python success, he founded the programming education website Finxter.com that has taught exponential skills to millions of coders worldwide. He’s the author of the best-selling programming books Python One-Liners (NoStarch 2020), The Art of Clean Code (NoStarch 2022), and The Book of Dash (NoStarch 2022). Chris also coauthored the Coffee Break Python series of self-published books. He’s a computer science enthusiast, freelancer, and owner of one of the top 10 largest Python blogs worldwide.
His passions are writing, reading, and coding. But his greatest passion is to serve aspiring coders through Finxter and help them to boost their skills. You can join his free email academy here.