Exemple de code de comparer aucun avec une chaîne vide

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