Untitled
unknown
python
2 years ago
286 B
11
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