Sunday, May 10, 2026
HomeLanguagesSelect any row from a Dataframe in Pandas | Python

Select any row from a Dataframe in Pandas | Python

In this article, we will learn how to get the rows from a dataframe as a list, without using the functions like ilic[]. There are multiple ways to do get the rows as a list from given dataframe. Let’s see them will the help of examples.




# importing pandas as pd 
import pandas as pd 
    
# Create the dataframe 
df = pd.DataFrame({'Date':['10/2/2011', '11/2/2011', '12/2/2011', '13/2/11'], 
                    'Event':['Music', 'Poetry', 'Theatre', 'Comedy'], 
                    'Cost':[10000, 5000, 15000, 2000]}) 
  
  
# using interrors() method
  
# Create an empty list 
Row_list =[] 
    
# Iterate over each row 
for index, rows in df.iterrows(): 
  
    # Create list for the current row 
    my_list =[rows.Date, rows.Event, rows.Cost] 
        
    # append the list to the final list 
    Row_list.append(my_list) 
    
# Print the list 
print(Row_list) 


Output:

[['10/2/2011', 'Music', 10000], ['11/2/2011', 'Poetry', 5000], 
      ['12/2/2011', 'Theatre', 15000], ['13/2/11', 'Comedy', 2000]]




    
# Print the first 2 elements 
print(Row_list[:2]) 


Output:

[['10/2/2011', 'Music', 10000], ['11/2/2011', 'Poetry', 5000]]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32514 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6892 POSTS0 COMMENTS
Nicole Veronica
12012 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12107 POSTS0 COMMENTS
Shaida Kate Naidoo
7016 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6975 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS