Wymień kolumnę wartości inną, jeśli brakujące pandy

import numpy as np

df['column'] = np.where(df['column'].isnull(), 'value_if_true', 'value_if_false')
The Frenchy