Pythonで標準的に使われる
組み込み関数の一覧です

pythonの公式ドキュメントも参考にしてください

組み込み関数

abs()dict()help()min()setattr()
all()dir()hex()next()slice()
any()divmod()id()object()sorted()
ascii()enumerate()input()oct()staticmethod()
bin()eval()int()open()str()
bool()exec()isinstance()ord()sum()
bytearray()filter()issubclass()pow()super()
bytes()float()iter()print()tuple()
callable()format()len()property()type()
chr()frozenset()list()range()vars()
classmethod()getattr()locals()repr()zip()
compile()globals()map()reversed()__import__()
complex()hasattr()max()round() 
delattr()hash()memoryview()set() 

abs()
数の絶対値を返す
引数は整数または浮動小数点
abs(-5.23)
5.23

all()
iterable全ての要素が有ればTrueを返す
all([1,2,3])
True

any()
要素いずれかが有ればTrueを返す
any([None,None,1])
True