Python Forum
assignments of function references
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
assignments of function references
#4
(Aug-15-2019, 12:42 AM)Skaperen Wrote: can i do:

def myfunc():
    print('my_func')

class foo:

foo.func = myfunc

foo.func()
?


yes, you can

def myfunc():
    print('my_func')


class foo:
    pass


foo.func = staticmethod(myfunc)

foo.func()
But I'm sure that you really don't need that
Reply


Messages In This Thread
assignments of function references - by Skaperen - Aug-14-2019, 06:29 PM
RE: assignments of function references - by fishhook - Aug-15-2019, 11:12 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Where can I find Python training with reading, lecture, labs and assignments? davidorlow 2 977 Oct-20-2022, 10:46 AM
Last Post: rob101
  Environment seems to keep losing references spacedog 2 1,917 Apr-23-2021, 07:36 PM
Last Post: spacedog
  How to print the names of assignments if they are randomly selected Kongurinn 2 3,335 Oct-22-2017, 07:31 AM
Last Post: buran
  module functions and data references Skaperen 6 4,274 Jul-30-2017, 04:09 AM
Last Post: Skaperen
  Looking for Python Assignments BillGates 3 3,610 Mar-06-2017, 04:31 PM
Last Post: BillGates

Forum Jump:

User Panel Messages

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