Sujet : bool type have big problem. finally program returned "True".Is this the TRUE spec? De : deqser25 (at) *nospam* gmail.com (あうぇくろ) Groupes :comp.lang.python Date : 18. Jan 2025, 13:55:56 Autres entêtes Message-ID :<mailman.92.1737391296.2912.python-list@python.org> References :1
from typing import List from types import FunctionType, LambdaType
def composite(*func: List[FunctionType]) -> LambdaType: if len(func) < 2: raise TypeError(f'composite expected over 2 arguments, but got {len(func)}') if len(func) == 2: return lambda *args, **kwargs: func[1](func[0](*args, **kwargs))