You are still working with the penguins_example DataFrame.
Let's now calculate the mean of the two columns, 'bill_length_mm' and 'bill_depth_mm' and create a new column called 'mean_bill' that will store the resulting values.
To compute the mean, you need to add bill length and bill depth and then divide the sum by two.
Note that the DataFrame is already stored in the variable penguins_example, so you just need to insert your code before the print() function. You don't need to import pandas here.