Advertisement
Fhernd

variables-coleccion.py

Mar 18th, 2018
891
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.47 KB | None | 0 0
  1. # Variables a partir de una tupla:
  2. tupla = (2, 5)
  3. x, y = tupla
  4. print(x)
  5. print(y)
  6.  
  7. # Error:
  8. # x, y, z = tupla
  9.  
  10. print('')
  11.  
  12. # Variables a partir de una lista:
  13. lista = [(2018, 3, 14), "Stephen Hawking", 76, 1942]
  14. fecha, nombre, edad, ahnio = lista
  15. print(fecha)
  16. print(nombre)
  17. print(edad)
  18. print(ahnio)
  19.  
  20. print('')
  21.  
  22. # Variables a partir de una cadena de caracteres:
  23. lenguaje = 'Python'
  24. p, y, t, h, o, n = lenguaje
  25.  
  26. # Omisión de valores:
  27. _, nombre, _, ahnio = lista
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement