Example: ```python >>> ser = pd.Series(["3.50"]) >>> ser 0 3.5 # wrong repr, should show 3.50 dtype: object >>> ser[0] '3.50' # this is ok ```