“Len Dictionary Python” Respostas de código

você pode dar comprimento um dicionário em python

obj = {0:"hello", 1:"there"}

for i in range(len(obj)):
  print(obj[i])
  
print(len(obj))
White Lord

Len Dictionary Python

len({'Name':'Steve', 'Age':30, 'Designation':'Programmer'})
David Cao

Comprimento do dicionário em Python

#!/usr/bin/python

dict = {'Name': 'Zara', 'Age': 7};
print "Length : %d" % len (dict)
Reshma Monica

Respostas semelhantes a “Len Dictionary Python”

Perguntas semelhantes a “Len Dictionary Python”

Mais respostas relacionadas para “Len Dictionary Python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código