Advertisement
Fhernd

acceso-arreglos.py

Feb 12th, 2018
1,016
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.56 KB | None | 0 0
  1. import numpy as np
  2.  
  3.  
  4. primos = [2, 3, 7, 19, 23]
  5.  
  6. # Todos los valores son tipo flotante:
  7. arreglo_primos = np.array(primos)
  8. print(arreglo_primos)
  9.  
  10. print('')
  11.  
  12. # Acceder a un elemento individual:
  13. print(arreglo_primos[2])
  14.  
  15. print('')
  16.  
  17. # Sección del arreglo de primos:
  18. print(arreglo_primos[2:5])
  19.  
  20. print()
  21.  
  22. # Creación de una matriz:
  23. matriz = np.array([[2, 3], [11, 23]])
  24. print(matriz)
  25.  
  26. print('')
  27.  
  28. # Cambia un elemento de la matriz original:
  29. matriz[1, 1] = 29
  30.  
  31. print(matriz)
  32.  
  33. print('')
  34.  
  35. # Selecciona la segunda fila de la matriz:
  36. print(matriz[1, :])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement