434,509 views
32 votes
32 votes
Suppose we have the list: list = [1,2,3,4,5,6]

(Python) What would the list look like after the following code: list[3] = 10

User Abdul Wadood
by
2.7k points

1 Answer

9 votes
9 votes
1, 2, 3, 10, 5, 6 is the answer
User Jesobremonte
by
3.2k points