Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,104 questions

40,780 answers

573 users

How to create pandas DataFrame from dictionary in Python

Learn & Practice SQL


81 views
asked Jan 6, 2021 by avibootz
edited Jan 6, 2021 by avibootz

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 138 views
1 answer 90 views
1 answer 87 views
...