Link Search Menu Expand Document

And

The and command returns true if both inputs are true.

and [bool, bool]

Overview

name: 'and'
min: 2
max: 2
arguments:
    - bool
    - bool
return: bool

Example

>>> and true true
True
>>> and false true
False