Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. #!/usr/bin/env python3
  2.  
  3. ejemplo = {
  4.  
  5. 'llave' : "Valor",
  6.  
  7. 'entero' : 10,
  8.  
  9. 'cadena' : "String",
  10.  
  11. 'real' : 3.23
  12.  
  13. }
  14.  
  15. for e in ejemplo:
  16.     print ("Llaves de el diccionario ejemplo:", e)