Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. for column, row in df.iterrows():
  2. if(pd.isnull(row[column])):
  3. df[column + 'Blank or Not'] = "blank"
  4. else:
  5. df[column + 'Blank or Not'] = "not blank"
  6.  
  7. TypeError: unsupported operand type(s) for +: 'int' and 'str'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement