import string
lower_list = list(string.ascii_lowercase)
upper_list = list(string.ascii_uppercase)
number_list = list(range(0,10))
The lesson has us iterate over each of the above objects. All well and good. My question is, why do we need to cast them to a list when they are already iterable?