Statement

Applies to: general

A statement is an instruction the program executes. Some statements assign values, branch, loop, import code, or return from a function.

if speed > limit:
    speed = limit

See also: expression, conditional, loop