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? new_df = sour.iloc[1:3, :]value = new_df.iloc[:, -2].astype(int).max()print(value)