Answers for "pandas making a dataframe"

9

how to create dataframe in python

import pandas as pd
  
# intialise data of lists.
data = {'Name':['Tom', 'nick', 'krish', 'jack'],
        'Age':[20, 21, 19, 18]}
  
# Create DataFrame
df = pd.DataFrame(data)
  
# Print the output.
df
Posted by: Guest on May-05-2021
0

pandas make new dataframe

df = pd.DataFrame({'column1':[1,2,3],'column2':[4,5,6])
Posted by: Guest on April-06-2021

Code answers related to "pandas making a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language