filmov
tv
Creating Series using Dictionary | In Python |

Показать описание
Python programming code to create Series using Dictionary:
import pandas as pd
dictionary={'name of row1': 1st value, 'name of row2': 2nd value,............}
print(pd.Series(dictionary))
import pandas as pd
dictionary={'name of row1': 1st value, 'name of row2': 2nd value,............}
print(pd.Series(dictionary))