Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Qu'affiche ce code ?
L=[]for i in range(2,10): if i%3==0: L.append(i)print(L)
L=[]
for i in range(2,10):
if i%3==0:
L.append(i)
print(L)
[ ]
[3, 6, 9]
"L"
[2, 4, 6, 8]
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!