There is the "sl" list and there is the "sw" list. Write code that will create a "data" dataframe with the values from "sl" in the first column and "sw" in the second column
import pandas as pd def get_dataframe(sl, sw): df = pd.DataFrame({ 'sl': sl, 'sw': sw }) return df sl = [1, 2, 3, 4, 5] sw = [1, 2, 3, 4, 5] df = get_dataframe(sl, sw) df