❓ Quiz Python
Quel est le type retourné par cette expression ?
PYTHONDebutantlistes
20
quiz.py
1
x = [1, 2, 3]2
y = x.copy()3
4
y.append(4)5
print(x)6
print(y)Quel est le type retourné par cette expression ?
x = [1, 2, 3]y = x.copy() y.append(4)print(x)print(y)