“Python Iterar Claves” Code-Antworten

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

Ähnliche Antworten wie “Python Iterar Claves”

Fragen ähnlich wie “Python Iterar Claves”

Weitere verwandte Antworten zu “Python Iterar Claves” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen