df_Import.update(df_Import["QUALIFIER"].where(df_Import["TYPE"].str.contains("LM")), df_Import["QUALIFIER"]"Leistung")
I am trying to update the empty slot in my column df_Import["QUALIFIER"]
if the condition, that the other column df_Import["TYPE"]
contains "LM"
inside.
But how can I tell my program to write "Leistung" inside the ["QUALIFIER"]
column if the condition matches?