def in_asc_order(arr): return next((False for i in range(1, len(arr[1:])+1) if not arr[i] > arr[i-1]), True)
위 코드에 대한 섦명(작성 중)