“Adicionando nova chave em Python” Respostas de código

Adicione novas chaves a um python de dicionário

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

Adicionando nova chave em 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

Respostas semelhantes a “Adicionando nova chave em Python”

Perguntas semelhantes a “Adicionando nova chave em Python”

Mais respostas relacionadas para “Adicionando nova chave em Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código