45.9k views
2 votes
Assume the following statement appears in a program: names = [] Which of the following statements would you use to add the string "Wendy" to the list at index[0] Why did you choose that one? a) names [0] = 'Wendy' b) ('Wendy')

1 Answer

7 votes

Final answer:

The correct statement to add the string "Wendy" to the list at index[0] is a) names[0] = 'Wendy'.

Step-by-step explanation:

The correct statement to add the string "Wendy" to the list at index[0] is a) names[0] = 'Wendy'. This statement assigns the value 'Wendy' to the element at index 0 in the list 'names'. The other option, b) ('Wendy'), is not a valid statement to add an element to a list.

User Zefiro
by
7.8k points