본문 바로가기

Programming/Python

any/all(), enumerate()

  • any() : 하나라도 True라면 True 반환
  • all() : 모두 True면 True 반환

Sample Code

if any(cur[1] < q[1] for q in queue):
            queue.append(cur)

 

 

  • enumerate() : index와 원소를 동시에 접근하는 방법

Sample Code

>>> for entry in enumerate(['A', 'B', 'C']):
...     print(entry)
...
(0, 'A')
(1, 'B')
(2, 'C')

'Programming > Python' 카테고리의 다른 글

set.update()  (0) 2024.06.30
startswith, endswith  (0) 2024.04.14