Exemple de code pour vérifier le type d'objet aucun

# Declaring a variable and initializing with None type
typeOfNone = type(None) 

print(typeOfNone)
Outrageous Ostrich