Untitled
user_6477607
plain_text
2 years ago
245 B
5
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