[lang-ref] ( logic_operator_or ) ( python )

def test_logic_operator_or():
    # and
    v = 20
    r = v % 3 == 0 or v % 5 == 0
    assert r