📜  熊猫系列选择第一个值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:13.307000             🧑  作者: Mango

代码示例1
df = pd.DataFrame([[1, 2], [3, 4]], ['a', 'b'], ['A', 'B'])
df['A'].iloc[0]  # first item in a Series (Column)