I have been combing the help associated with (None) values in arc, and have not been able to solve the following problem:
I have a a field with mixed Null and integer values:
0 100
I would like to transform the null values to 0's in python:
cursor = arcpy.UpdateCursor(fishJoin, ['myField']):
for row in cursor:
if row is None:
row = 0
cursor.updateRow(row)
This does not alter any of the null values. Thanks for any ideas/help!