1. ホーム
  2. python-2.7

[解決済み] PandasでSeriesのDataFrameから1列を表示/印刷する

2022-03-08 22:29:45

質問

以下のSeriesとDataFrameを作成しました。

import pandas as pd

Series_1 = pd.Series({'Name': 'Adam','Item': 'Sweet','Cost': 1})
Series_2 = pd.Series({'Name': 'Bob','Item': 'Candy','Cost': 2})
Series_3 = pd.Series({'Name': 'Cathy','Item': 'Chocolate','Cost': 3})`
df = pd.DataFrame([Series_1,Series_2,Series_3], index=['Store 1', 'Store 2', 'Store 3'])

DataFrameから1列だけ表示/印刷したい(ヘッダ行の有無にかかわらず)。

どちらか

Adam 
Bob 
Cathy

または

Sweet
Candy
Chocolate

以下のコードを試しましたが、うまくいきませんでした。

print(df['Item'])
print(df.loc['Store 1'])
print(df.loc['Store 1','Item'])
print(df.loc['Store 1','Name'])
print(df.loc[:,'Item'])
print(df.iloc[0])

簡単な1行のコードでできる?

どのように解決するのですか?

を使用することで to_string

print(df.Name.to_string(index=False))


 Adam
  Bob
Cathy