I am making a Data Quality that receives a list with data from a Database and I have two rules:
For the NULL
rule I am using:
if (pd.isnull(lista[linha2][linha])):
print("Alguma coisa")
and recognizes the field as NaN .
How do I do blank or empty fields?
And does the field type influence (ex: str and float)?