# Built In Functions

* [abs() function](https://thepythonguru.com/python-builtin-functions/abs/)
* [bin() function](https://thepythonguru.com/python-builtin-functions/bin/)
* [id() function](https://thepythonguru.com/python-builtin-functions/id/)
* [map() function](https://thepythonguru.com/python-builtin-functions/map/)
* [zip() function](https://thepythonguru.com/python-builtin-functions/zip/)
* [filter() function](https://thepythonguru.com/python-builtin-functions/filter/)
* [reduce() function](https://thepythonguru.com/python-builtin-functions/reduce/)
* [sorted() function](https://thepythonguru.com/python-builtin-functions/sorted/)
* [enumerate() function](https://thepythonguru.com/python-builtin-functions/enumerate/)
* [reversed() function](https://thepythonguru.com/python-builtin-functions/reversed/)
* [range() function](https://thepythonguru.com/python-builtin-functions/range/)
* [sum() function](https://thepythonguru.com/python-builtin-functions/sum/)
* [max() function](https://thepythonguru.com/python-builtin-functions/max/)
* [min() function](https://thepythonguru.com/python-builtin-functions/min/)
* [eval() function](https://thepythonguru.com/python-builtin-functions/eval/)
* [len() function](https://thepythonguru.com/python-builtin-functions/len/)
* [ord() function](https://thepythonguru.com/python-builtin-functions/ord/)
* [chr() function](https://thepythonguru.com/python-builtin-functions/chr/)
* [any() function](https://thepythonguru.com/python-builtin-functions/any/)
* [all() function](https://thepythonguru.com/python-builtin-functions/all/)
* [globals() function](https://thepythonguru.com/python-builtin-functions/globals/)
* [locals() function](https://thepythonguru.com/python-builtin-functions/locals/)

## Built-in Functions: <a href="#built-in-functions" id="built-in-functions"></a>

​[Built-in Functions — Python 3.9.7 documentationdocs.python.org](https://docs.python.org/3/library/functions.html#dir)

​‌

The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.

| ​Title                                                                             | ​Title                                                                             | Built-in Functions                                                              | ​Title                                                                               | ​Title                                                                              |
| ---------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------ | ----------------------------------------------------------------------------------- |
| ​[`abs()`](https://docs.python.org/3/library/functions.html#abs)​                  | ​[`delattr()`](https://docs.python.org/3/library/functions.html#delattr)​          | ​[`hash()`](https://docs.python.org/3/library/functions.html#hash)​             | ​[`memoryview()`](https://docs.python.org/3/library/functions.html#func-memoryview)​ | ​[`set()`](https://docs.python.org/3/library/functions.html#func-set)​              |
| ​[`all()`](https://docs.python.org/3/library/functions.html#all)​                  | ​[`dict()`](https://docs.python.org/3/library/functions.html#func-dict)​           | ​[`help()`](https://docs.python.org/3/library/functions.html#help)​             | ​[`min()`](https://docs.python.org/3/library/functions.html#min)​                    | ​[`setattr()`](https://docs.python.org/3/library/functions.html#setattr)​           |
| ​[`any()`](https://docs.python.org/3/library/functions.html#any)​                  | ​[`dir()`](https://docs.python.org/3/library/functions.html#dir)​                  | ​[`hex()`](https://docs.python.org/3/library/functions.html#hex)​               | ​[`next()`](https://docs.python.org/3/library/functions.html#next)​                  | ​[`slice()`](https://docs.python.org/3/library/functions.html#slice)​               |
| ​[`ascii()`](https://docs.python.org/3/library/functions.html#ascii)​              | ​[`divmod()`](https://docs.python.org/3/library/functions.html#divmod)​            | ​[`id()`](https://docs.python.org/3/library/functions.html#id)​                 | ​[`object()`](https://docs.python.org/3/library/functions.html#object)​              | ​[`sorted()`](https://docs.python.org/3/library/functions.html#sorted)​             |
| ​[`bin()`](https://docs.python.org/3/library/functions.html#bin)​                  | ​[`enumerate()`](https://docs.python.org/3/library/functions.html#enumerate)​      | ​[`input()`](https://docs.python.org/3/library/functions.html#input)​           | ​[`oct()`](https://docs.python.org/3/library/functions.html#oct)​                    | ​[`staticmethod()`](https://docs.python.org/3/library/functions.html#staticmethod)​ |
| ​[`bool()`](https://docs.python.org/3/library/functions.html#bool)​                | ​[`eval()`](https://docs.python.org/3/library/functions.html#eval)​                | ​[`int()`](https://docs.python.org/3/library/functions.html#int)​               | ​[`open()`](https://docs.python.org/3/library/functions.html#open)​                  | ​[`str()`](https://docs.python.org/3/library/functions.html#func-str)​              |
| ​[`breakpoint()`](https://docs.python.org/3/library/functions.html#breakpoint)​    | ​[`exec()`](https://docs.python.org/3/library/functions.html#exec)​                | ​[`isinstance()`](https://docs.python.org/3/library/functions.html#isinstance)​ | ​[`ord()`](https://docs.python.org/3/library/functions.html#ord)​                    | ​[`sum()`](https://docs.python.org/3/library/functions.html#sum)​                   |
| ​[`bytearray()`](https://docs.python.org/3/library/functions.html#func-bytearray)​ | ​[`filter()`](https://docs.python.org/3/library/functions.html#filter)​            | ​[`issubclass()`](https://docs.python.org/3/library/functions.html#issubclass)​ | ​[`pow()`](https://docs.python.org/3/library/functions.html#pow)​                    | ​[`super()`](https://docs.python.org/3/library/functions.html#super)​               |
| ​[`bytes()`](https://docs.python.org/3/library/functions.html#func-bytes)​         | ​[`float()`](https://docs.python.org/3/library/functions.html#float)​              | ​[`iter()`](https://docs.python.org/3/library/functions.html#iter)​             | ​[`print()`](https://docs.python.org/3/library/functions.html#print)​                | ​[`tuple()`](https://docs.python.org/3/library/functions.html#func-tuple)​          |
| ​[`callable()`](https://docs.python.org/3/library/functions.html#callable)​        | ​[`format()`](https://docs.python.org/3/library/functions.html#format)​            | ​[`len()`](https://docs.python.org/3/library/functions.html#len)​               | ​[`property()`](https://docs.python.org/3/library/functions.html#property)​          | ​[`type()`](https://docs.python.org/3/library/functions.html#type)​                 |
| ​[`chr()`](https://docs.python.org/3/library/functions.html#chr)​                  | ​[`frozenset()`](https://docs.python.org/3/library/functions.html#func-frozenset)​ | ​[`list()`](https://docs.python.org/3/library/functions.html#func-list)​        | ​[`range()`](https://docs.python.org/3/library/functions.html#func-range)​           | ​[`vars()`](https://docs.python.org/3/library/functions.html#vars)​                 |
| ​[`classmethod()`](https://docs.python.org/3/library/functions.html#classmethod)​  | ​[`getattr()`](https://docs.python.org/3/library/functions.html#getattr)​          | ​[`locals()`](https://docs.python.org/3/library/functions.html#locals)​         | ​[`repr()`](https://docs.python.org/3/library/functions.html#repr)​                  | ​[`zip()`](https://docs.python.org/3/library/functions.html#zip)​                   |
| ​[`compile()`](https://docs.python.org/3/library/functions.html#compile)​          | ​[`globals()`](https://docs.python.org/3/library/functions.html#globals)​          | ​[`map()`](https://docs.python.org/3/library/functions.html#map)​               | ​[`reversed()`](https://docs.python.org/3/library/functions.html#reversed)​          | ​[`__import__()`](https://docs.python.org/3/library/functions.html#__import__)​     |
| ​[`complex()`](https://docs.python.org/3/library/functions.html#complex)​          | ​[`hasattr()`](https://docs.python.org/3/library/functions.html#hasattr)​          | ​[`max()`](https://docs.python.org/3/library/functions.html#max)​               | ​[`round()`](https://docs.python.org/3/library/functions.html#round)​                | ​Content                                                                            |
