Using python knowledge it is possible to write a function that displays the largest sets of an array.
import pandas as pd
cars_df=pd.read_csv('Cars.csv')#cars.csv is not provided, using random data
userNum = int(input())
cars_df_subset=cars_df[:userNum]
print(cars_df_subset.max())
See more about python at brainly.com/question/18502436
#SPJ1