자료구조
리스트, 튜플, 딕셔너리 # 리스트 x = [1,2,3,4,0] for n in x: print(n) # 1 2 3 4 0 이 출력됨 y = ["hello", "there"] for n in y: print(n) # "hello" "there" 가 출력됨 print("hello" in y) #True print(20 in x) #False x[1] = 5 --가변 x = (1,2,3) y = (2,"e") print(x+y) print(y.index("e")) print(1 in x) x[0] = 4 -- 에러: 튜플은 불변 immutable => 튜플과 리스트의 차이 : 튜플은 assignment가 안된다. 리스트는 가변, 튜플은 불변 # 딕셔너리 x = dict() y = {} x= { 'name':..
2020. 10. 21.