A two-dimensional list is entered as a table of integers (see example below). Use list comprehension to convert a two-dimensional list to a one-dimensional list so that the values of the elements go in reverse order. Display the result as a string of numbers separated by a space
def convert_to_list(a): return [str(i) for i in a[0][::-1]] convert_to_list([[1, 2], [3, 4]])