Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 422 Bytes

File metadata and controls

41 lines (33 loc) · 422 Bytes

func_name

Description

Returns the function's name.

Syntax

function.func_name

Return Value

#TODO

Time Complexity

#TODO

Remarks

The func_name attribute is writeable.

Example 1

>>> def foo(): pass
...
>>> foo.func_name
'foo'

Example 2

>>> def foo(): pass
>>> foo.func_name = 'frotz'
>>> foo.func_name
'frotz'

See Also

#TODO