-
-
Save drorata/2b135aff2afa0dfedd729ee783b28c24 to your computer and use it in GitHub Desktop.
Example around mutable default values of functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"from typing import Any" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Wrong 💥" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def add_value(new_val: Any, my_list: list[Any] = []):\n", | |
" print(f\"{my_list = }\")\n", | |
" print(f\"{id(my_list) = }\")\n", | |
" my_list.append(new_val)\n", | |
" return my_list" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"bar\", my_list=[\"foo\",])\n", | |
"f\"{res = }\"" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"foo\")\n", | |
"res" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"foo\")\n", | |
"res" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# Right! 🚀" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def add_value(new_val, my_list: list[Any] | None = None):\n", | |
" if my_list is None:\n", | |
" my_list = []\n", | |
"\n", | |
" print(f\"{my_list = }\")\n", | |
" print(f\"{id(my_list) = }\")\n", | |
" my_list.append(new_val)\n", | |
" print(my_list)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"foo\")\n", | |
"res" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"foo\")\n", | |
"res" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# What about immutable❓" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"def add_value(new_val, my_tuple: tuple[Any] = tuple()):\n", | |
" print(f\"{my_tuple = }\")\n", | |
" print(f\"{id(my_tuple) = }\")\n", | |
" # my_tuple.append(new_val)\n", | |
" my_tuple += (new_val, )\n", | |
" print(f\"{id(my_tuple) = }\")\n", | |
" return my_tuple" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"foo\")\n", | |
"res" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(new_val=\"foo\")\n", | |
"res" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"res = add_value(\"bar\", my_tuple=(\"foo\",))\n", | |
"res" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": ".venv", | |
"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.12.2" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment