pyhton string concat if not nulll code example
Example: python - concatenate if null
# Option 1
df['concat'] = np.where(df['var_1'] == '', df['var_2'], df['var_1'] + '_u')
# Option 2
def concat_fields(field1, field2):
if field1.empty:
return field2
else:
return field1 + '_u'