I have dataframe (df)
like below
address1 address2 Subject
NaN [email protected] Invoice 3
NaN NaN Invoice 4
[email protected] [email protected] Invoice 5
My logic is as below
If value is present for
address1
andaddress2
is present thento_address
value should be Address1If no values are present are in Address 1 and Address 2 or both are
NaN
then "david@gmailcom" should be takenIf
address1
value is not prsent orNaN
andaddress2
value is present then this should be taken.
But my or-logic code doesnt work as required. What is the mistake I am making.
My code:
for i, row in df.iterrows():
subject = row["Subject"]
to_address = row['address1'] or row['address2'] or "david@gmailcom"
Try to do it with a lambda function: