import pandas as pd df = pd.DataFrame([[1, 2, 3], [4, 5, 4]], columns=list('ABC')) print(df.index.values) # indexを配列で表示 ...
確定! 回上一頁