[Python] map, filter 함수
map 함수 사용방법 map을 이용하면 ['3','4','5','6'] 리스트의 데이터가 int에 하나씩 거쳐가게 된다. 그러므로 아래의 예시를 보면 리스트의 데이터는 모두 int 로 형변환된다. map(함수, 순서가있는자료형) map(int,['3','4','5','6']) items = [' 로지덱마우스',' 앱솔키보드 '] for i in range(items): items[i] = items[i].strip() def strip_all(x): return x.strip() items = [' 로지덱마우스',' 앱솔키보드 '] items = list(map(strip_all,items)) items = [' 로지덱마우스',' 앱솔키보드'] items = map(lambda x:x.strip(),it..
Python
2022. 6. 11. 00:03