I am using Python 3.7. I am working on Titanic survival prediction ML project. The CSV file have "age" column, that has some null values in it. So I want to train my model in two sets - 1. train set having age column with some valid values; 2. train set for the rows which have null value in age column.
I have the 1st train set. How can I acquire all those rows with null values in "age" column?