We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In [1]: import pandas as pd In [2]: pd.__version__ Out[2]: '0.11.1.dev-45d298d' In [3]: pd.Series(10) Out[3]: 10
Ok, when setting index explicitly
In [4]: pd.Series(10, index=[0]) Out[4]: 0 10 dtype: int64