[lang-ref] ( sequence_a_to_z ) ( python )
def test_sequence_a_to_z():
alphabets = [chr(ord('a') + x) for x in range(ord('z') - ord('a') + 1)]
assert len(alphabets) == 26
assert alphabets[0] == 'a'
assert alphabets[-1] == 'z'
assert alphabets == list('abcdefghijklmnopqrstuvwxyz')