Skip to content

Latest commit

 

History

History
11 lines (6 loc) · 534 Bytes

boolean.md

File metadata and controls

11 lines (6 loc) · 534 Bytes

Boolean

A data type in Python that is either "True" or "False" and is often used as a basic building block for logical operations. They are implied in conditional statements (which check if expressions are true in order to run a bit of code) and can be retruend by functions.

Readings

Tutorials

  • Check out w3school's tutorial on using Booleans.