Untitled

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

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