Built In Functions
Built In Functions | |
---|---|
Language | Python |
1 Description
These functions are built in to Python meaning you do not need to import anything to call these functions, you may call these functions at any time.
2 List of Functions
Built-In Functions | ||
---|---|---|
Function Return Type | Function Name | Function Description |
IntegerFloating PointObject | abs(numeric_type number) |
|
asynchronous_iterator | aiter(asynchronous_iterable async_iter) |
|
Boolean | all(iterable iter) |
|
awaitable | anext(asynchronous_iterator async_iter, [ any default ]) |
|
Boolean | any(iterable iter) |
|
String | ascii(any object) |
|
String | bin(numeric_type number) |
|
boolean | bool(any object) |
|
void | breakpoint(any *arguments, any **keyword_arguments) |
|
array | bytearray([ source [, encoding [, errors ] ] ]) |
|
bytes | bytes([ source [, encoding [, errors ] ] ]) |
|
Boolean | callable(object) |
|
String | chr(int i) | |
AST | compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1) | |
complex | complex(number=0, /) | |
complex | complex(string, /) | |
complex | complex(real=0, imag=0) | |
void | delattr(object, name) | |
dict() | ||
dir() | ||
divmod() | ||
enumerate() | ||
eval() | ||
exec() | ||
filter() | ||
float() | ||
format() | ||
frozenset() | ||
getattr() | ||
globals() | ||
hasattr() | ||
hash() | ||
help() | ||
hex() | ||
id() | ||
input() | ||
int() | ||
isinstance() | ||
issubclass() | ||
iter() | ||
len() | ||
list() | ||
locals() | ||
map() | ||
max() | ||
memoryview() | ||
min() | ||
next() | ||
object() | ||
oct() | ||
open() | ||
ord() | ||
pow() | ||
print(objects, sep=' ', end='\n', file=None, flush=False) |
||
property() | ||
range() | ||
repr() | ||
reversed() | ||
round() | ||
set() | ||
setattr() | ||
slice() | ||
sorted() | ||
staticmethod() | ||
str() | ||
sum() | ||
super() | ||
tuple() | ||
type() | ||
vars() | ||
zip() | ||
__import__() |
This document was last updated: