Created
June 11, 2020 09:48
-
-
Save velotiotech/6f6127645c34ffcea01788562e603df3 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> import pandas as pd | |
>>> import numpy as np | |
>>> series = pd.Series([12,32,54,2, np.nan, "a string", 6]) | |
>>> series | |
0 12 | |
1 32 | |
2 54 | |
3 2 | |
4 NaN | |
5 a string | |
6 6 | |
dtype: object |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment