0
nums = [7, 7, 7, 7, 7] nums[2] = 5 print(nums)
How I don't know
4 Respostas
+ 11
Thiha yehtut Please,
Can you specifying your question correctly!
• Include relevant TAGS; and
• Use the 🔍SEARCH... bar future for similar QUESTIONS or ANSWERS before posting.
+ 9
num[2] = 5 replaces the second element 7 (counting from zero) from the list with 5
+ 3
The index of an array starts from 0.
Then nums [2] is the third number in the array.
So the final array will be: [7,7,5,7,7]
+ 1
What are you trying to understand?