“Boucle para Python” Respostas de código

Boucle para Python

c = ["Marc", "est", "dans", "le", "jardin"]
for i in range(len(c)):
    print("i vaut", i, "et c[i] vaut", c[i])
MVP

Para Pyton

for i in range(n):
	#instruction
# other instruction out of the loop
Disgusted Donkey

Respostas semelhantes a “Boucle para Python”

Perguntas semelhantes a “Boucle para Python”

Mais respostas relacionadas para “Boucle para Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código