[lang-ref] ( sequence_step_by_x ) ( python )

def test_sequence_step_by_x():
    # range(1, n+1, x)
    assert list(range(1, 6, 2)) == [1, 3, 5]