以上dataframe要选取name这一column

img

选D:

print(df['Name'])
'''
0    A
1    B
2    C
3    B
Name: Name, dtype: object
'''

遇事不决选D