[python] list 안에 각 원소들 타입 변경 ls = [1,2,3,4] ls_str = list(map(str,ls)) ls_str # ['1','2','3','4'] 데이터 분석/[Python] 기초 2022.04.04
[Python] list append / extend list형 append vs extend 1) list - append( ) x = [1, 2, 3] y = [4, 5] x.append(y) print(x) # [1, 2, 3, [4, 5]] 2) list - extend( ) x = [1, 2, 3] y = [4, 5] x.extend(y) print(x) # [1, 2, 3, 4, 5] 데이터 분석/[Python] 기초 2021.08.03
[Python] 두 리스트 안에 유니크한 값 찾기 list(set(x).symmetric_difference(set(f))) # x,f는 리스트 데이터 분석/[Python] 기초 2021.07.12