[lang-ref] ( slice_from_m_to_end ) ( python )

def test_slice_from_m_to_end():
    # text[m:]
    text = '0123456789'
    m = 3
    part = text[m:]
    assert part == '3456789'