“iterar sobre un set python” Código de respuesta

set de python iterado

    cuisine = {"american", "italian", "chinese"}
    for food in cuisine:
        print(food)
CompSciGeek

iterar sobre un set python

# Creating a set using string
test_set = set("geEks")
 
# Iterating using for loop
for val in test_set:
    print(val)
IK

Respuestas similares a “iterar sobre un set python”

Preguntas similares a “iterar sobre un set python”

Más respuestas relacionadas con “iterar sobre un set python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código