Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

Built-In Functions

We have actually already been working with a number of Python’s built-in functions. These include print(), dict(), input(), int(), and len().

We call built-in functions using the function name, followed by parenthesis.

When we call one of these built-in functions, Python accesses and then executes the funtion’s source code stored elsewhere in the Python environment.

Using print() as an example:

Comprehension Check

Clipboard iconBuilt-in Functions in Python Comprehension Check