Which 2 of the following initializes "moves" to an empty list and then says "apples cherries"?
moves + [ ]
append (moves, "cherries")
insert (moves, 1, "apples")
display (moves [2])
display (moves [1])
moves + [ ]
append (moves, "cherries")
append (moves, "apples")
display (moves [1])
display (moves [2])
moves + [ ]
append (moves, "cherries")
append (moves, "apples")
display (moves [2])
display (moves [1])
moves + [ ]
append (moves, "cherries")
insert (moves, 1, "apples")
display (moves [1])
display (moves [2])

Which 2 of the following initializes moves to an empty list and then says apples cherries moves append moves cherries insert moves 1 apples display moves 2 disp class=

Respuesta :

Otras preguntas