Answers for "How many rows and columns are in this dataset in total? What are the name of columns? with python code"

5

pandas dataframe get number of columns

import pandas as pd
df = pd.DataFrame({"pear": [1,2,3], "apple": [2,3,4], "orange": [3,4,5]})

len(df.columns)
3
Posted by: Guest on August-23-2020

Code answers related to "How many rows and columns are in this dataset in total? What are the name of columns? with python code"

Python Answers by Framework

Browse Popular Code Answers by Language