Untitled

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

for estilo in estilos:
    if estilo == "Rock":
        break
    print(estilo)
Leave a Comment