# L-10.5 MCS 260 Wed 9 Jul 2014 : q13.py
"""
Use list comprehensions to make
L = [[('a', 97), ('b', 98), ... , ('z', 122)].
The list of tuples L links the lower case letters a to z
to their respective ASCII codes.
"""
A = [k for k in range(ord('a'), ord('z')+1)]
B = [chr(k) for k in A]
L = zip(B, A)
print L
