"Built-in functions mean that we do not need to install any 3rd party library using pip to use

them"

Not quite true, built-in functions are the functions that are always available without having to import a module. So zip and enumerate, but not pprint or sleep.

The latter are part of the Python standard library, but they aren't built-in functions.

Martin McBride
Martin McBride

No responses yet