November 06, 2020
list(map(함수, 리스트))
tuple(map(함수, 튜플))
예시 1
>>> a = [1.3, 2.2, 3, 4.9]
>>> a = list(map(int, a))
>>> a
[1, 2, 3, 4]
예시 2
data_list = list(map(int, input().split(' ')))
# 받은 input을 ' ' 구분자로 나눈 뒤 int로 변환하여 리스트에 저장
예시 3
n, m = map(int, input().split())
위의 코드를 풀어 쓰면 아래와 같다.
data = input().split()
map = map(int, x)
n, m = map # 맵 객체는 변수 여러 개에 저장할 수 있다
Source