Untitled
Anonymous
plain_text
09/03/2024 4:42 PM
176 B
15
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)