The Cars dataset has three columns giving the quality, machining angle, and machining speed of 18 cars.
Write a program that performs the following tasks:
Load the data Cars.csv into a data frame called cars_df.
Subset the first userNum rows of the data frame into a new data frame.
Find and print the maximum values of each column in the subset.
Ex: If the input is:
5
the output is:
Quality 5
Speed 4
Angle 3
dtype: int64
I need this code in python