Complete the code.

A sample member of the list data is a1 = ['male',True], which indicates a male was on the phone.

for item in data:
if item[ ____ ] == 'male':

males = males + 1
if item[1]:

• 1
• 0
• 2

Respuesta :

Answer:

0

Explanation:

In the lists, indexation starts from 0, because of that in if statement we compare item[0] which is 'male' and 'male', and then males is itterated within for loop.

Fuenzy

It is 0 - zero

Why?

counting in a list starts at 0, not 1. "male" is 0 and "True" is 1

Ejnknbfmbmssxininninxsoxmekdjeidjef