Skip to content

Commit

Permalink
feat: continuação capítulo listas
Browse files Browse the repository at this point in the history
  • Loading branch information
HenriqueAJNB committed Jul 22, 2024
1 parent 69bf177 commit 543b7b7
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion book/06-estruturas-de-dados/02-listas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,42 @@
{
"cell_type": "markdown",
"metadata": {},
"source": []
"source": [
"#### Substituindo valores"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Como vimos bem lá no começo deste capítulo, listas são objetos mutáveis. Por isso temos vários métodos de inserção e deleção de itens em uma lista. Mas podemos também alterar valores já existentes. Vejamos um exemplo:"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"['Fernando', 'José', 'Jonas', 'Joaquim', 'Caio', 'Antônio']\n"
]
}
],
"source": [
"nomes = [\"João\", \"José\", \"Jonas\", \"Joaquim\", \"Caio\", \"Antônio\"]\n",
"nomes[0] = \"Fernando\"\n",
"print(nomes)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Aqui, a linha `nomes[0] = \"Fernando\"` é responsável por substituir no índice 0 o nome existente `João` pelo `Fernando`. "
]
}
],
"metadata": {
Expand Down

0 comments on commit 543b7b7

Please sign in to comment.