[Python] any(), all()
any(iterable): ReturnTrueif any element of an iterable isTrueall(iterable): ReturnTrueif all element of an iterable isTrue
範例
Last Updated on 2024/06/09 by A1go
any(iterable): Return True if any element of an iterable is Trueall(iterable): Return True if all element of an iterable is TrueLast Updated on 2024/06/09 by A1go