CBSE Class 12 Informatics Practices Question 51 of 167

Python Pandas — I — Question 16

Back to all questions
16
Question

Question 16

Missing data in Pandas object is represented through :

  1. Null
  2. None
  3. Missing
  4. NaN
Answer

NaN

Reason — NaN stands for 'Not a Number'. In Python libraries like NumPy and Pandas, NaN is the legal empty value used to represent missing or undefined values, and we can use np.NaN to specify a missing value.