Przykład kodu, aby sprawdzić typ obiektu Brak

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

print(typeOfNone)
Outrageous Ostrich