Skip to content

Instantly share code, notes, and snippets.

@aateg
Created June 1, 2019 02:41
Show Gist options
  • Save aateg/342bff55e0715d5b99b6e3b7eeb1115f to your computer and use it in GitHub Desktop.
Save aateg/342bff55e0715d5b99b6e3b7eeb1115f to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([1, 2, 3, 4, 5])"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# podemos converter lista para numpy arrays\n",
"lista = [1, 2, 3, 4, 5]\n",
"lista_array = np.array(lista, dtype=np.int64)\n",
"lista_array"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([[1, 2, 3, 4],\n",
" [5, 6, 7, 8]])"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# podemos converter matrizes para numpy arrays\n",
"matriz = [[1,2,3,4], [5,6,7,8]]\n",
"matriz_array = np.array(matriz, dtype=np.int64)\n",
"matriz_array"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.5"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment