[python] list 안에 각 원소들 타입 변경 ls = [1,2,3,4] ls_str = list(map(str,ls)) ls_str # ['1','2','3','4'] 데이터 분석/[Python] 기초 2022.04.04