Answers for "python set if not null"

24

python null

a = None
Posted by: Guest on March-28-2020
0

python if column is null then

df['real_lastName'] = np.where(df['LastName'].isnull(), df['Middle'], df['LastName'] )

print (df)
  FirstName Middle LastName real_lastName
0       Tom     Ju      NaN            Ju
1      Kity    NaN      Rob           Rob
Posted by: Guest on June-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language