Python object()
La funzione object() restituisce un oggetto senza caratteristiche che è una base per tutte le classi.
La sintassi di object() è:
o = object()
La funzione object() non accetta parametri.
test = object()
print (type(test))
Output del codice
<class 'object'>