0
what will come in print statement
list = [1,2,3,4] if len (list) %2 == 0 : print(list[__]) fill in the blanks to print the first element of the list, if it contains even no of elements
3 Respuestas
+ 7
the question is wrong because variable list is a list and not an int. so it will give unsupported operand error
+ 2
The first element is list[0].
+ 1
k i will correct it