I have two python lists that looks like the following:
a = [10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
b = [100, 90, 80, 70, 60, 50, 40, 30, 20, 10]
How can I create a plot of these two lists (indices as x and values as y) that contains two subplots, each with its own title and axis labels?