Skip to content

Instantly share code, notes, and snippets.

@drorata
Created February 14, 2025 21:02
Show Gist options
  • Save drorata/b4447e0bad2f7983f3b000aa4174b0c4 to your computer and use it in GitHub Desktop.
Save drorata/b4447e0bad2f7983f3b000aa4174b0c4 to your computer and use it in GitHub Desktop.
Introduction to * and / in function signatures in Python
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Recap positional and keywords (optional)\n",
"\n",
"See also [this](https://realpython.com/videos/positional-only-arguments/)\n",
"\n",
"```python\n",
"def combined_example(pos_only_a, pos_only_b, /, standard_1, standard_2, *, kwd_only_1, kwd_only_2):\n",
" pass\n",
"```"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"def foo(a, b):\n",
" print(f\"{a=}, {b=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, \"Joe\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(a=1, b=\"Joe\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(b=1, a=\"Joe\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(b=1)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"def foo(a, b, c=\"default_val\"):\n",
" print(f\"{a=}, {b=}, {c=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, 2)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, 2, 10)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, 2, c=10)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(c=1, 2, 10)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, a=2, c=10)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, b=2, c=10)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Motivation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Keyword only argument\n",
"\n",
"See [PEP-3102](https://peps.python.org/pep-3102/#specification)"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [],
"source": [
"def compare(a, b, key=None):\n",
" print(f\"{a=}, {b=}, {key=}\")"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [],
"source": [
"# ❌ Not desired compare(1,2,3)\n",
"# ✅ Desired compare(1,2,key=3)"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"def compare(a, b, *ignore, key=None):\n",
" if ignore: # If ignore is not empty\n",
" raise TypeError(\"Got more than 2 positional arguments\")\n",
" print(f\"{a=}, {b=}, {key=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"compare(1, 2)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"compare(1, 2, 3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"compare(1, 2, key=3)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Conflicting option"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [],
"source": [
"# From: https://peps.python.org/pep-0570/#semantic-corner-case\n",
"def foo(name, **kwds):\n",
" return 'name' in kwds"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"foo(1, **{'name': 2})"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## The Solution `/` and `*`"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [],
"source": [
"def compare(a, b, *, key=None):\n",
" print(f\"{a=}, {b=}, {key=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"compare(1, 2)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"compare(1, 2, 3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"compare(1, 2, key=3)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [],
"source": [
"def combined_example(pos_only, /, standard, *, kwd_only):\n",
" print(f\"{pos_only=}, {standard=}, {kwd_only=}\")"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"combined_example()"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"combined_example(1, 2, 3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"combined_example(1, 2, kwd_only=3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"combined_example(1, standard=2, kwd_only=3)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"combined_example(pos_only=1, standard=2, kwd_only=3)"
]
}
],
"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