“Python Iterar Claves” Kod odpowiedzi

Python Iterar Diccionario

edades = {'Manuel': 22, 'Susana': 19, 'Alicia': 24}
for nombre, edad in edades.items():
    print(nombre, "tiene", edad, "años")

# Resultado:
Manuel tiene 22 años
Susana tiene 19 años
Alicia tiene 24 años
Código 360

Python Iterar Claves

# Iterar sobre claves
for clave in diccionario.keys():
    print(clave)
Código 360

Odpowiedzi podobne do “Python Iterar Claves”

Pytania podobne do “Python Iterar Claves”

Więcej pokrewnych odpowiedzi na “Python Iterar Claves” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu