Table of Contents

Python - Control flow (Comparator, Boolean Operator and Conditional Statement)

About

Language - Control Flow Statement (If, Switch, For) - Conditional Operators - Execution order - Branch Conditionals (aka decisions) in Python

Operator

Comparators

== is used to compare whether two things are equal, and = is used to assign a value to a variable.

Comparisons generate (one of two)?? results: True or False

variable_true  = 1 <= 2
variable_false = 1 == 2

Flow Statement