Is there any way to access the first element of the python series object that may contain a list in some entries
Example input
JUNE 0.1591
JULY 0.004
AUG 0.000
SEPT NaN
OCT [1.004, 0.000]
dtype: object
Desired output
JUNE 0.1591
JULY 0.004
AUG 0.000
SEPT NaN
OCT 1.004
dtype: object