# Create and populate a 5x2 NumPy array.my_data=np.array([[0,3],[10,7],[20,9],[30,14],[40,15]])# Create a Python list that holds the names of the two columns.my_column_names=['temperature','activity']# Create a DataFrame.my_dataframe=pd.DataFrame(data=my_data,columns=my_column_names)# Print the entire DataFrameprint(my_dataframe)