import numpy as np
vector = np.array([1, 2, 4, 8, 16])
print(vector)
matrix = np.array([[5, 10], [15, 30]])
print(matrix)
lista_1 = (100, 200, 300, 400)
lista_2 = (3, 4, 5, 6)
vector_2 = np.array(lista_1)
matrix_2 = np.array([lista_1, lista_2])
type(vector)
telefono1 =(3157774012, 3007741362)
telefono2 =(3002589632, 3154786932)
vector_tel1 = np.array (telefono1)
matrix_telefonos = np.array([telefono1, telefono2])
print (vector_tel1)
print (matrix_telefonos)
matrix_telefonos.shape