I have the following question for homework
Define a function append lists that takes a list of lists and returns a new list containing the sublist values. For example, append lists([[1, 2], [3, 4], [5]]) should return the list [1, 2, 3, 4, 5] and append lists([[1, 2], [3], [[4, 5]]]) should return the list [1, 2, 3, [4, 5]].
I've tried various ways of creating this function in order to append the list so it gives the desired output to no avail so I came here looking for some help. I've found a few other ways of going about this online, but they use extensive methods that we haven't even dabbled in as of yet in my CPSC 121 class. We're limited to the basics in what we've learned.
Any help would be much appreciated!
def append_lists(list): a = list[:] list.append(a) print(list)Thats the most recent attempt i've tried – Ryan Feb 21 '11 at 22:47