Python Forum
Call and execute methods from a list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Call and execute methods from a list
#3
Also if i run it like this:
func_to_run = globals()[argumentsList[0],argumentsList[1]], i have no error but nothing happens so the methods are not called.

Does anyone have an idea about this? Or a solution I could try?

newStrList = [x.encode('UTF8') for x in argumentsList]
try:
#print(newStrList)
getattr(yourFile.yourClass,newStrList[0])()
getattr(yourFile.yourClass,newStrList[1])()
except KeyError:
pass


This is the solution that works for me. Of course you can iterate through the list but just to showcase the code.
Reply


Messages In This Thread
Call and execute methods from a list - by asheru93 - Jan-16-2019, 08:22 AM
RE: Call and execute methods from a list - by asheru93 - Jan-17-2019, 08:31 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  for loops break when I call the list I'm looping through Radical 4 1,070 Sep-18-2023, 07:52 AM
Last Post: buran
  How do I call sys.argv list inside a function, from the CLI? billykid999 3 975 May-02-2023, 08:40 AM
Last Post: Gribouillis
  How to create a linked list and call it? loves 12 4,968 Nov-22-2020, 03:50 PM
Last Post: loves
  list call problem in generator function using iteration and recursive calls postta 1 2,045 Oct-24-2020, 09:33 PM
Last Post: bowlofred
  How to call/read function for all elements in my list in python johnny_sav1992 1 2,189 Jul-27-2020, 04:19 PM
Last Post: buran
  API call returning list value of 'None' jimbone30 5 2,770 Jun-14-2019, 07:42 PM
Last Post: jimbone30

Forum Jump:

User Panel Messages

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