Quiz Python NSI

Programmation Python

Teste tes connaissances sur les fondamentaux de Python

Question 1 / 10Score actuel: 0 / 0

Quelle est la sortie de ce code Python ?

x = [1, 2, 3]
y = x
y.append(4)
print(len(x))
EdTech AI Assistant