Untitled

mail@pastecode.io avatar
unknown
plain_text
4 months ago
131 B
4
Indexable
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']

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