I\'m learning python from Google code class. I\'m trying out the exercises.
def front_x(words): x_list, ord_list = [] for word in words: if word[0] == \'
Change the line
x_list, ord_list = [] to x_list, ord_list = [], []