KnowledgeBoat Logo
|

Informatics Practices

Which of the following statements is false?

  1. Dataframe is size-mutable.
  2. Dataframe is values-mutable.
  3. Dataframe is immutable.
  4. Dataframe is capable of holding multiple types of data.

Python Data Handling

1 Like

Answer

Dataframe is immutable.

Reason — DataFrame is value-mutable, size-mutable and stores heterogeneous data types.

Answered By

2 Likes


Related Questions