Skip to content

Instantly share code, notes, and snippets.

@drorata
Forked from dr-dror/demo.ipynb
Created November 17, 2024 07:33
Show Gist options
  • Save drorata/e7475e03224bc4f0bfa650fbd6b6cc1e to your computer and use it in GitHub Desktop.
Save drorata/e7475e03224bc4f0bfa650fbd6b6cc1e to your computer and use it in GitHub Desktop.
Class vs. instance attributes
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"* Inspired by https://stackoverflow.com/q/45284838/671013\n",
"* We will have three passes over the code below; each time changing something small in the class' definition"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"class Foo:\n",
" name=\"some name\"\n",
" tricks=list() # 1st step\n",
" def __init__(self, name):\n",
" self.name=name\n",
" # We will uncomment this shortly\n",
" self.tricks=[] # 2nd step\n",
" self.tricks.append(name)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"f\"{id(Foo.tricks) = }\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"f1=Foo(\"hello world\")\n",
"f\"{f1.name = }\", f\"{f1.tricks = }\", f\"{id(f1.tricks) = }\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"f2=Foo(\"bye world\")\n",
"f\"{f2.name = }\", f\"{f2.tricks = }\", f\"{id(f2.tricks) = }\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"f\"{f1.name = }\", f\"{f1.tricks = }\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"f\"{id(Foo.tricks) = }\", f\"{id(f1.tricks) = }\", f\"{id(f2.tricks) = }\""
]
}
],
"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