I have a list that is pulled into python from Google Sheets. Some of the cells are empty and return a value of None.
I checked the class type for these \'None\' values a
In case, when gapes in i are not needed:
i
for i, val in enumerate([x for x in some_list if x]): ...