``` >>> s = pd.Series([None, 'a', 'b']) >>> s 0 None 1 a 2 b dtype: object >>> s.min() inf ```