Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 11, 2020 09:48
>>> 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