how to get the name of an object in python

Solutions on MaxInterview for how to get the name of an object in python by the best coders in the world

showing results for - "how to get the name of an object in python"
Ananya
12 Feb 2016
1dict([(t.__name__, t) for t in fun_list])
2