Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lære Converting: bool() | Bring All the Topics Together
Data Types in Python
course content

Kursusindhold

Data Types in Python

Data Types in Python

1. Getting Familiar With Numbers in Python
2. Mastering Boolean Logic in Python
3. Python String Manipulation
4. Bring All the Topics Together

book
Converting: bool()

This short practical chapter will get us acquainted with the bool() function. You may recall that numbers can be converted to the boolean data type too: 1 means True, and 0 means False.

Note

We can put whatever we want into the bool() function, and everything except 0 in different types (0, 0.0), and None will lead to True.

Opgave

Swipe to start coding

In this task, you'll practice using the bool() function to convert different values to boolean.

  1. Convert -90 to a boolean and store the result in statement1.
  2. Convert "La vie est belle" to a boolean and store the result in statement2.
  3. Convert None to a boolean and store the result in statement3.

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 4. Kapitel 4
toggle bottom row

book
Converting: bool()

This short practical chapter will get us acquainted with the bool() function. You may recall that numbers can be converted to the boolean data type too: 1 means True, and 0 means False.

Note

We can put whatever we want into the bool() function, and everything except 0 in different types (0, 0.0), and None will lead to True.

Opgave

Swipe to start coding

In this task, you'll practice using the bool() function to convert different values to boolean.

  1. Convert -90 to a boolean and store the result in statement1.
  2. Convert "La vie est belle" to a boolean and store the result in statement2.
  3. Convert None to a boolean and store the result in statement3.

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 4. Kapitel 4
Switch to desktopSkift til skrivebord for at øve i den virkelige verdenFortsæt der, hvor du er, med en af nedenstående muligheder
Vi beklager, at noget gik galt. Hvad skete der?
some-alt