728x90
반복문을 돌리지 않고 enumerate, map을 print하면 내가 원하는 결과가 나오지 않는다.
print(enumerate(citations, start=1))
print(map(min, enumerate(citations, start=1)))
이럴때는 list를 사용하여 안의 값을 볼 수 있다.
print(list(enumerate(citations, start=1)))
print(list(map(min, enumerate(citations, start=1))))
728x90
'Python > 이론, 기초' 카테고리의 다른 글
[Python] Set 정리 사용법 (0) | 2023.03.10 |
---|---|
[Python] 파이썬 any(), all() (0) | 2023.03.09 |
[Python] for문에서 pop 사용하기 (0) | 2023.02.09 |
[Python] 한줄로 for+ if 문 사용하기 (0) | 2023.02.09 |
[Python] 코드 실행 시간 측정 (0) | 2022.10.07 |