[lang-ref] ( get_first_character ) ( python )

def test_get_first_character():
    # text[0]
    text = 'ABCDE'

    r = text[0]

    assert r == 'A'