Advertisement
Guest User

Untitled

a guest
Mar 30th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. with arcpy.da.UpdateCursor("contacts", 'Contact_Status1') as cursor:
  2. for row in cursor:
  3. if row[0] is None or ' ' or 'NEW' :
  4. row[0]= "New"
  5. cursor.updateRow(row)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement