Curso de Programación en Python/Dict-2

De WikiCabal
Ir a la navegación Ir a la búsqueda

Dict-2.py

 1 #!/usr/bin/python3
 2 #-*-coding: utf-8 -*-
 3 
 4 Frutas = {}
 5 
 6 # Add three key-value tuples to the dictionary
 7 Frutas[ "Fresa" ] = 2
 8 Frutas[ "Kiwi" ] = 4
 9 Frutas[ "Lichi" ] = 7
10 
11 
12 print( Frutas[ "Kiwi"] )
13 
14 print( Frutas.get( "Limon" ) )
15 print( Frutas.get( "Limon", "no hay Limones" ) )


Resultado

[rrc@Llawyr PythonClase]$ ./Dict-2.py 
4
None
no hay Limones