반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

list/tuple/dict/set in python 본문

[IT]/python

list/tuple/dict/set in python

givemebro 2020. 3. 24. 16:37
반응형
           
LIST L=[ ]   변경 가능한 튜플    
TUPLE T=( )   변경 불가능한 리스트    
DICTIONARY D={key:value}   키에 따른 값  

D.items()

D.keys()

D.values()

SET S={ }   중복 제거  

|(합집합)

&(교집합)

-(차집합)

           
반응형

'[IT] > python' 카테고리의 다른 글

python.str.encode/decode  (0) 2020.04.27
machine learning.데이터 간의 거리(기준 [0])  (0) 2020.04.07
machine learning.개발 순서  (0) 2020.04.07
모듈 구분  (0) 2020.03.26
convert [pandas's data] to [numpy's data]  (0) 2020.03.26
열 계산  (0) 2020.03.25
3단 논법  (0) 2020.03.25
anaconda 실행  (0) 2020.03.24
Comments