Advertisement
hackloper775

dic2

Feb 17th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  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)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement