[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 alphabets == list('abcdefghijklmnopqrstuvwxyz')
def test_sequence_a_to_z():
alphabets = [chr(ord('a') + x) for x in range(ord('z') - ord('a') + 1)]
assert alphabets == list('abcdefghijklmnopqrstuvwxyz')