co_name Description Returns the function name. Syntax code.co_name Return Value #TODO Time Complexity #TODO Example >>> def func(frotz, bamf=10): ... pass ... >>> c = foo.func_code >>> c.co_name 'foo' See Also #TODO