Skip to content
Advertisement

How can I translate If-Else code to Python?

I have a huge If-Else code that I write in Tableau The compiler simply takes a lot of time to execute this code so I want to move it onto Python.

My df:

JavaScript

I have a VLOOKUP table that Interprets these values to provide an output

JavaScript

My If-Else code simply put is:

JavaScript

Where df_output is the resulting dataframe

e.g. for

JavaScript

The df_output[“result”] would be “DNB”

How can I write the same code in Python to save time?

Advertisement

Answer

Like this?

JavaScript

output:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement