You are comparing the portion of female drivers on the phone to the portion of male drivers on the
phone. You created a two-dimensional array using lists. There are 100 observations in your study. An
abbreviated version of the list data is shown.
data = [['male', True], ['female',True], ['male',False]]
As an example, ['male', True] represents a male who is on the phone. ['female', False] represents a female
who is not on the phone.
What is the missing line of code?