Skip to content

Commit

Permalink
Atualização
Browse files Browse the repository at this point in the history
  • Loading branch information
rigueti-bruno committed Jun 29, 2024
1 parent 1152f60 commit 031c0c8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Desafios.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -821,6 +821,27 @@
"b = 4**3**2\n",
"print(a,b,z)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"inmutable\n"
]
}
],
"source": [
"s = 'immutable'\n",
"s = [i for i in s]\n",
"s[1] = 'n'\n",
"s = ''.join(s)\n",
"print(s)"
]
}
],
"metadata": {
Expand Down

0 comments on commit 031c0c8

Please sign in to comment.