Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Python bool() Function | Boolean Type
Python Data Types
close
Sektion 2. Kapitel 2
single

single

bookPython bool() Function

Stryg for at vise menuen

In Python there is bool() function that converts variables of any type into a variable of boolean type (True or False). Let's look at an example for better understanding.

Input:
zero = 0
print(bool(zero))

Output:
False
Input:
one = 1
print(bool(one))

Output:
True
Input:
number = 10
print(bool(number))

Output:
True

Any digit other than zero is True.

Input:
x = None
print(bool(x))

Output:
False
Opgave

Swipe to start coding

You have three numbers of different numeric types, you have to return a boolean object from each of one.

Løsning

Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Var alt klart?

Hvordan kan vi forbedre det?

Tak for dine kommentarer!

Sektion 2. Kapitel 2
single

single

Spørg AI

expand

Spørg AI

ChatGPT

Spørg om hvad som helst eller prøv et af de foreslåede spørgsmål for at starte vores chat

some-alt