Untitled
unknown
plain_text
a year ago
131 B
11
Indexable
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']
for estilo in estilos:
if estilo == "Rap":
continue
print(estilo)Editor is loading...
Leave a Comment
estilos = ['Hip-Hop', 'Rock', 'Rap', 'Pop']
for estilo in estilos:
if estilo == "Rap":
continue
print(estilo)