[lang-ref] ( string_starts_with ) ( python )
def test_string_starts_with():
# startswith
text = 'Good morning'
s = 'Good'
assert text.startswith(s)
def test_string_starts_with():
# startswith
text = 'Good morning'
s = 'Good'
assert text.startswith(s)