Untitled

 avatar
user_6477607
plain_text
a year ago
245 B
4
Indexable
estilos = ['Hip-Hop','Rock','Rap','Pop']
for estilo in estilos:
    if estilo == 'Rap':
        continue
    print(estilo)


estilos = ['Hip-Hop','Rock','Rap','Pop']
for estilo in estilos:
    if estilo == 'Rock':
        break
    print(estilo)
Editor is loading...
Leave a Comment