Contoh kode untuk memeriksa jenis objek None

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

print(typeOfNone)
Outrageous Ostrich