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 1992 times
Edit
4
Community EvaluationsNo one has reviewed this question yet, be the first!
4
Write a Python code that will wait for 40 seconds.5
Change the value of a nested list element in Python5
What is the output of the following code?
```
import asyncio
async def read_data():
with open('data.txt', 'r') as f:
data = f.read()
return data
async def main():
data = await read_data()
print(data)
if __name__ == '__main__':
asyncio.run(main())
```4
Create a list of 10 elements in Python4
What is the output of the following Python code?
```
G = '123'
print(G + 1)
```5
Write a Python program to open a file in binary mode and write a string to it.5
Why is the output of the following code undefined?
```
def f(n):
return n + 1
f(n)
```