diff --git a/135k-keyword-only-arguments.md b/135k-keyword-only-arguments.md index b862848..ff955c6 100644 --- a/135k-keyword-only-arguments.md +++ b/135k-keyword-only-arguments.md @@ -1,7 +1,7 @@ # Keyword Only Arguments #python #programming #functions #howtodo -- * and ** [[a1mq-unpacking-sequences-and-iterables]] +- `*` and `**` [[a1mq-unpacking-sequences-and-iterables]] ```python def tag(name, *content, class_=None, **attrs): diff --git a/a8bt-high-order-functions.md b/a8bt-high-order-functions.md index 00e6735..6035114 100644 --- a/a8bt-high-order-functions.md +++ b/a8bt-high-order-functions.md @@ -22,7 +22,6 @@ - [[ey8t-lambda-function]]# - [[4fmy-packages-for-functional-programming-in-python]]# -- ## Partial - Receives one `callable` and `arguments` with predetermined values diff --git a/pcvu-sort-and-sorted.md b/pcvu-sort-and-sorted.md index e0294af..405efe2 100644 --- a/pcvu-sort-and-sorted.md +++ b/pcvu-sort-and-sorted.md @@ -3,7 +3,7 @@ - `Sort` and `sorted` in python are to organize elements in a specific order - They have two `keywords`: `key` and `reverse` - * key: receive a function with one argument to be pass the element to be compared to other + * key: receive a function with one argument to be pass the element to be compared to other: [[a8bt-high-order-functions]] * reverse: if the order is reversed - `Sort` does not return a new object while but `sorted` returns, so the former is `in-place`, in that way less memory is used. diff --git a/tds4-python.md b/tds4-python.md index 9269649..b6d6c6b 100644 --- a/tds4-python.md +++ b/tds4-python.md @@ -18,4 +18,4 @@ - [[iexf-del]]# - [[a8bt-high-order-functions]]# - [[dcdy-callable-objects]]# -- [[135k-keyword-only-arguments]] +- [[135k-keyword-only-arguments]]#