Untitled

user_6477607 avatar
user_6477607
plain_text
04/23/2024 2:14 AM
328 B
17
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