sort of:
import pandas as pd pd.isnull(frame).any()
You are probably looking to search for missing data.
fillna does not currently accept lambda functions, although this works like an open issue on github.
You can use DataFrame.apply to do custom settings. Although can you be more specific about what you need to do to fill in the data? Just curious what a use case is.
source share