[lang-ref] ( logic_operator_and ) ( python )

def test_logic_operator_and():
    # and
    v = 15
    r = v % 3 == 0 and v % 5 == 0
    assert r