map object 생성방법은 아래와 같다
map(type, iterable)
어디에 사용할 수 있느냐? 하나의 라인에 여러 개의 int value를 입력받을 때 사용할 수 있다
a,b,c = map(int, input().split(' '))
# input example: 1 2 3
map 또한 iterable 타입으로서, next() 함수를 통해 순회할 수 있다
'Language > python' 카테고리의 다른 글
[Utility] URL 인코딩된 파일이름 URL 디코드 (0) | 2019.06.17 |
---|---|
[python] BeautifulSoup4 vs Scrapy (0) | 2018.05.01 |
[python] for문과 yield문, return문 (0) | 2018.04.24 |
[python] elasticsearch-dsl scan / index / doc_type (0) | 2018.04.12 |
[python] logging handler class 소개 (0) | 2018.04.12 |
WRITTEN BY
- hojongs
블로그 옮겼습니다 https://hojongs.github.io/