Untitled

 avatar
unknown
python
a year ago
280 B
8
Indexable
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']
for estilo in estilos:
    if estilo == 'Rap':
        continue
    print(f'{estilo} é um dos estilos musicais.')


for estileira in estilos:
    if estileira == 'Rock':
        break
    print(f'Sente o {estileira} pesado.')
Editor is loading...
Leave a Comment