❓ 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)Que se passe-t-il à l'exécution ?
text = "Python est fun"result = text[::2]print(result)