프로그래밍 문법/python
any([리스트]) : 리스트 내에 하나라도 True가 있으면 True 반환 (or)
all([리스트]) : 리스트 내에 모두가 True일때만 True 반환(and)