1 #!/usr/bin/python3 2 #-*-coding: utf-8 -*- 3 4 Verduras = { "Zanahoria" : 12, "Zuchinni" : 8 } 5 6 print( "Len( Verduras ):", len( Verduras ) )
[rrc@Llawyr PythonClase]$ ./Dict-4.py Len( Verduras ): 2