Python Forum
Accessing method as function object
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Accessing method as function object
#1
Hi,

How do you access a class method as a function object (not a function call)? The context is that I would like to use the help() function on random.shuffle(), but that results in an error because random.shuffle() prompts a function call, not the function itself.
Reply
#2
help(random.shuffle)
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#3
In [1]: class Foo:
   ...:     def __init__(self, num):
   ...:         self.num = num
   ...:     @property
   ...:     def double(self):
   ...:         return self.num + self.num
   ...:

In [2]: obj = Foo(5)

In [3]: obj.double
Out[3]: 10
"As they say in Mexico 'dosvidaniya'. That makes two vidaniyas."
https://freedns.afraid.org
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  cx_oracle Error - AttributeError: 'function' object has no attribute 'cursor' birajdarmm 1 2,297 Apr-15-2023, 05:17 PM
Last Post: deanhystad
  i want to use type= as a function/method keyword argument Skaperen 9 1,831 Nov-06-2022, 04:28 AM
Last Post: Skaperen
  SystemError: <method-wrapper '__getattribute__' of EnumMeta object sciloop 4 1,490 Jul-23-2022, 07:57 PM
Last Post: sciloop
  AttributeError: 'function' object has no attribute 'metadata 3lnyn0 5 4,584 Mar-28-2022, 04:42 PM
Last Post: Larz60+
  how to call an object in another function in Maya bstout 0 2,068 Apr-05-2021, 07:12 PM
Last Post: bstout
  Building a method name in a function ffgth 9 3,186 Oct-19-2020, 01:21 PM
Last Post: buran
  accessing value array object ortollj 1 1,549 Aug-30-2020, 12:00 PM
Last Post: ortollj
  subprogram issues: cannot unpack non-iterable function object error djwilson0495 13 5,959 Aug-20-2020, 05:53 PM
Last Post: deanhystad
  accessing a second level nested function varsh 3 2,468 Aug-13-2020, 06:57 AM
Last Post: varsh
  function/method help myv5285 3 2,784 May-17-2020, 04:19 AM
Last Post: buran

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020