Picture of the authorDevGrads

Conditions

Control program flow based on comparisons or tests.

Syntax

if condition_satisfies: 
  #run this block of code

Example

if age >= 18: 
  print("You are an adult.")