Is there a way in python to get a types default value?
//C#
default(typeof(int))
I am looking for a more pythonic way to get type defaults?
#python
if(isinstance(myObj, int):
return 0
elif(isinstance(myObj, dict):
return {}
else:
return None
Obviously I dumbed it down. I am dealing with some abstract things, and when someone asks for an attribute I don't have, I basically check a mapping of key->type and return a default instance with a classic switch.
int()gives you 0. – Thomas K Jun 20 '11 at 18:25