Login
Remember
Register
Ask a Question
What is the data type of series s defined in below code?
0
votes
asked
Aug 13, 2021
in
Python Pandas
by
SakshiSharma
What is the data type of series s defined in below code?
import pandas as pd
s = pd.Series([9.2, 'hello', 89])
Select the appropriate answer from given below options :
a) int
b) str
c) object
d) float
pandas-data-types
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 13, 2021
by
SakshiSharma
Correct Answer of the above question is : -c) object
...