Exemplo de código para comparar nenhum com string vazia

# Declaring an empty string
str = ""
# Comparing None with empty string and printing the result
print (str == None)
Outrageous Ostrich