For each of the following, follow the instructions given. Y…

For each of the following, follow the instructions given. You may assume that pandas and numpy have been imported as pd and np respectively. Each question should be completed in ONE line. Do NOT use list/dict comprehensions. Do NOT include return in your answers.

Given the pandas DataFrame called interests_df, write one li…

Given the pandas DataFrame called interests_df, write one line of code that adds a new column titled “Food” where the value for the first row is “tacos’,  the value for the second row is “pizza”, and the value for the third row is “pizza”. Date Color Birth Year Num_Pets 0 Ronnie orange 1988 3 1 Angela blue 1994 2 2 Sanya red 1996 1

Note: the following code will NOT error. The NaN values are…

Note: the following code will NOT error. The NaN values are np.nan. Given the following pandas DataFrame named sour, Song Length is_Explicit Streams (M) Type 0 drivers license 4:03 True 253.3 single 1 traitor 3:50 False 37.5 NaN 2 good 4 u 2:59 True 171.8 single 3 happier 2:56 True 47.2 album 4 favorite crime NaN False 20.9 NaN What is printed by the following code? print(sour.groupby([‘is_Explicit’])[‘Song’].count().min())