5. Write commands to print following details of a Series object seal : (a) if the series is empty (b) indexes of the series (C) The data type of underlying data (d) if the series stores any NaN value
Answers
Answered by
1
Explanation:
An atom is a complex arrangement of negatively charged electrons arranged in defined shells about a positively charged nucleus. This nucleus contains most of the atom's mass and is composed of protons and neutrons (except for common hydrogen which has only one proton).
Answered by
2
(a) If the series is empty:
Ans. - print(seal.empty)
(b) Indexes of the series:
Ans. - print(seal.index)
(c) The data type of underlying data:
Ans. - print(seal.dtypes)
(d) If the series stores any NaN value:
Ans. - print(seal.isna())
Similar questions