I am new to python and jupyter notebook.
I want to tansfer(or extract) numbers in a panda series.
for example I have a panda series x
x=pd.Series(15)
print(x)
type(x)
0 15
dtype: int64
pandas.core.series.Series
and I want only the number 15 as an integer
x=15
print(x)
type(x)
15
int
how to transfer the panda series to a single number?