● Series 객체에서 값(Value)과 인덱스(Index)를 얻기 위해서 각각 Series 클래스의 values와 index 속성을 이용한다. import pandas as pd obj = pd.Series([8, -20, -3, 13, 2]) #pd.Series와 리스트 [8, -20, -3, 13, 2] 를 이용해 객체 obj를 생성 print(obj) print(obj.values) #obj 객체의 값 print(obj.index) #obj 인덱스의 값(0-4범위를 갖는다) print(obj[2]) #인덱스 2에 해당되는 요소 값이 -3을 의미 0 8 1 -20 2 -3 3 13 4 2 dtype: int64 [ 8 -20 -3 13 2] RangeIndex(start=0, stop=5, ste..