How to create pandas DataFrame from dictionary in Python

1 Answer

0 votes
import numpy as np
import pandas as pd

dict = {'name': ['Tom', 'Emmy', 'Axel'],
        'algebra': [91, 80, 94],
        'python': [98, 85, 96]}

df = pd.DataFrame(dict)

print(df)



'''
run:

     name  algebra  python
0   Tom       91      98
1  Emmy       80      85
2  Axel       94      96

'''

 



answered Jan 6, 2021 by avibootz

Related questions

2 answers 253 views
1 answer 225 views
1 answer 211 views
1 answer 167 views
167 views asked May 14, 2020 by avibootz
1 answer 172 views
...