❓ Quiz Python

Que se passe-t-il à l'exécution ?

PYTHONDebutantslicing
20
quiz.py
1
text = "Python est fun"
2
result = text[::2]
3
print(result)