pd.Series.to_dict
¶
pandas.Series.to_dict(into=<class 'dict'>)
Supported Arguments None¶
Note
- This method is not parallelized since dictionaries are not parallelized.
- This method returns a typedDict, which maintains typing
information if passing the dictionary between JIT code and regular
Python. This can be converted to a regular Python dictionary by
using the
dict
constructor.