69.0k views
2 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 Leotsarev
by
4.2k points

1 Answer

3 votes
1, 2, 3, 10, 5, 6 is the answer
User Karoly Horvath
by
4.6k points