Enumerate
unknown
python
25 days ago
201 B
3
Indexable
Never
# Desafio frutas = ["Maçã", "Laranja", "Morango", "Limão"] for indice, frutas in enumerate(frutas, 0): print(indice, frutas) if indice == 3: print(f"{frutas} está em PROMOÇÃO!!!")
Leave a Comment