Hard
Given the following code: (One correct answer)
liste1 = liste2 = liste3 = [0,1,2,3,4,5,6,7,8,9]
assert liste1 is liste2 # OK
liste1 += [10]
assert liste1 is liste2 # OK
liste2 = liste2 + [11]
valueA = liste2 is liste3
valueB = liste1 is liste3
Author: Antoine BrennerStatus: PublishedQuestion passed 1916 times
Edit
4
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Python
5
Write a Python program to open a file in binary mode and write a string to it.5
Change the value of a nested list element in Python4
Write a Python code that will wait for 40 seconds.4
Why is the output of the following code undefined?
```
def f(n):
return n + 1
f(n)
```4
Create a list of 10 elements in Python