From c86c9b62553d7278edc2d039a3857def479f2e77 Mon Sep 17 00:00:00 2001 From: David Rotermund <54365609+davrot@users.noreply.github.com> Date: Wed, 13 Dec 2023 20:33:36 +0100 Subject: [PATCH] Update README.md Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com> --- python_basics/built_in/README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/python_basics/built_in/README.md b/python_basics/built_in/README.md index 923fefe..49d7030 100644 --- a/python_basics/built_in/README.md +++ b/python_basics/built_in/README.md @@ -75,14 +75,14 @@ Questions to [David Rotermund](mailto:davrot@uni-bremen.de) |[set()](https://docs.python.org/3/library/functions.html#func-set)|Return a new set object, optionally with elements taken from iterable.| |[setattr()](https://docs.python.org/3/library/functions.html#setattr)|This is the counterpart of getattr(). | |[slice()](https://docs.python.org/3/library/functions.html#slice)|Return a slice object representing the set of indices specified by range(start, stop, step). The start and step arguments default to None.| -|[sorted()]()| -|[staticmethod()]()| -|[str()]()| -|[sum()]()| -|[super()]()| -|[tuple()]()| -|[type()]()| -|[vars()]()| -|[zip()]()| -|[\_\_import\_\_()]()| +|[sorted()](https://docs.python.org/3/library/functions.html#sorted)|Return a new sorted list from the items in iterable.| +|[staticmethod()](https://docs.python.org/3/library/functions.html#staticmethod)|Transform a method into a static method.| +|[str()](https://docs.python.org/3/library/functions.html#func-str)|Return a str version of object.| +|[sum()](https://docs.python.org/3/library/functions.html#sum)|Sums start and the items of an iterable from left to right and returns the total. | +|[super()](https://docs.python.org/3/library/functions.html#super)|Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for accessing inherited methods that have been overridden in a class.| +|[tuple()](https://docs.python.org/3/library/functions.html#func-tuple)|Rather than being a function, tuple is actually an immutable sequence type| +|[type()](https://docs.python.org/3/library/functions.html#type)|With one argument, return the type of an object. | +|[vars()](https://docs.python.org/3/library/functions.html#vars)|Return the \_\_dict\_\_ attribute for a module, class, instance, or any other object with a \_\_dict\_\_ attribute.| +|[zip()](https://docs.python.org/3/library/functions.html#zip)|Iterate over several iterables in parallel, producing tuples with an item from each one.| +|[\_\_import\_\_()](https://docs.python.org/3/library/functions.html#import__)|This function is invoked by the import statement.|