Untitled
Anonymous
plain_text
09/03/2024 4:42 PM
172 B
17
Indexable
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']
for estilo in estilos:
if estilo == "Rock":
break
print(estilo)Editor is loading...
Leave a Comment
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']
for estilo in estilos:
if estilo == "Rock":
break
print(estilo)