[lang-ref] ( trim_first ) ( python )
def test_trim_first():
# lstrip
text = '\n\t abc def\t \n '
trimmed = text.lstrip()
assert trimmed == 'abc def\t \n '
def test_trim_first():
# lstrip
text = '\n\t abc def\t \n '
trimmed = text.lstrip()
assert trimmed == 'abc def\t \n '