[lang-ref] ( drop_first_n ) ( python )
def test_drop_first_n():
# text[n:]
text = '0123456789'
n = 3
part = text[n:]
assert part == '3456789'
def test_drop_first_n():
# text[n:]
text = '0123456789'
n = 3
part = text[n:]
assert part == '3456789'