how fill nan values in pandas data frame ? my data like this
id state zone
xxx AP south
xxx AP
xxx AP
xxx AP
xxx delhi north
xxx delhi
xxx delhi
xxx delhi
xxx delhi
how to fill missing value in zone
column based on state
column which we already known that AP
belongs to south
only, how to fill values using pandas?