“Agregar nueva llave en Python” Código de respuesta

Agregue nuevas claves a un diccionario Python

d = {'key':'value'}
print(d)
# {'key': 'value'}
d['mynewkey'] = 'mynewvalue'
print(d)
# {'mynewkey': 'mynewvalue', 'key': 'value'}
Mobile Star

Agregar nueva llave en Python

#adding new key in python

List_of_Students = {"Jim" : "Roll-32"+","+ "Priority-First",
                    "Yeasin": "Roll-33"+","+ "Priority-2nd",}

List_of_Students.update({"Pinky": "Roll-34"})

for x in List_of_Students:
    print(x)

#That will show only the the key

YEASIN ARAFAT

Respuestas similares a “Agregar nueva llave en Python”

Preguntas similares a “Agregar nueva llave en Python”

Más respuestas relacionadas con “Agregar nueva llave en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código