Define a python function that gets two lists and returns a l…
Define a python function that gets two lists and returns a line chart plot where the x-axis is the first list items and the y-axis is the second list items. Set the x and y axes titles as “x-axis” and “y-axis” then use the rest of the list data to create the plot object. Do not set any other properties of the plot. Return the plot object.
Read Details