Post

[Python] Series 인덱스 & 값 확인 :: Series.index | Series.values

Series 인덱스 및 값 확인

Reference Pandas In action
1
Series.index
  • 해당 Series의 인덱스와 인덱스의 type 확인
1
Series.values
  • 해당 Series의 값 확인
1
2
3
4
5
6
7
8
9
10
import pandas as pd

calories_info = {
    'Protein Bar' : 125,
    'Salade' : 215,
    'Chocolate Bar' : 406,
}

diet = pd.Series(calories_info)
diet
1
2
3
4
Protein Bar      125
Salade           215
Chocolate Bar    406
dtype: int64
1
2
print(f"diet의 인덱스 : {diet.index}")
print(f"diet의 값 : {diet.values}")
1
2
diet의 인덱스 : Index(['Protein Bar', 'Salade', 'Chocolate Bar'], dtype='object')
diet의 값 : [125 215 406]
This post is licensed under CC BY 4.0 by the author.