Untitled

 avatar
unknown
plain_text
9 months ago
131 B
6
Indexable
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']

for estilo in estilos:
    if estilo == "Rap":
        continue
    print(estilo)
Editor is loading...
Leave a Comment