Open In App

How to Select single column of a Pandas Dataframe?

In this article, we will discuss how to select a single column in a data frame. Now let us try to implement this using Python.

First, let’s create a dataframe 






# importing pandas as library
import pandas as pd
  
  
# creating data frame:
df = pd.DataFrame({'name': ['Akash', 'Ayush', 'Ashish',
                            'Diksha', 'Shivani'],
                     
                   'Age': [21, 25, 23, 22, 18],
                     
                   'Interest': ['Coding', 'Playing', 'Drawing',
                                'Akku', 'Swimming']})
  
print("The original data frame")
df

Output:



Method 1: Using Dot(dataframe.columnname) returns the complete selected column 




# using dot method
print("Single column value using dataframe.dot")
print(df.Interest)

Output:

Method 2: Using dataframe[columnname] method: 
There are some problems that may occur with using dataframe.dot are as follows: 

Because of the above reason dataframe[columnname] method is used widely.




# using dataframe[columnname]method
print("Single column value using dataframe[]")
print(df['Interest'])

Output:

Another Example now if we want to select the column Age.




# using dataframe[columnname]method
print("Single column value using dataframe[]")
print(df['Age'])

Output:


Article Tags :