Computer/Programing
Python data structure 파이썬 자료구조
HEESEOP
2019. 2. 7. 01:57
자료구조는 리스트list, 튜플tuple, 사전dict, 집합set 이 있다
추가
list.append('a')
list.update({'a':123})
list.update({'a':'abc'})
list.update({123,'abc'})
update 이중 실행시 마지막 업데이트값 참조
삭제
del list[0]
구조 확인
print type(a)