Untitled

 avatar
unknown
python
a year ago
286 B
6
Indexable
#Desafio 1: 
estilos = ['Hip-Hop','Rock','Rap','Pop']
for estilo in estilos:
    if estilo == "Rap":
        continue
    print(estilo)

#Desafio 2:
estilos = ['Hip-Hop','Rock','Rap','Pop']
for estilo in estilos:
    if estilo == "Rock":
        continue
    print(estilo)
Editor is loading...
Leave a Comment