I know I can do the following: >>> s = 'lower' >>> getattr(s, 'upper')() 'LOWER' But how could I do the same if I had the method 'address' (better name???) vs. method name? >>> upper_method = s.upper How do I combine this upper_method with string s to execute the method and return 'LOWER'? Thank you, Malcolm -- https://mail.python.org/mailman/listinfo/python-list
- Dynamically call methods where method is known by address v... Malcolm Greene
- Re: Dynamically call methods where method is known by ... Michael Selik
- Re: Dynamically call methods where method is known... Malcolm Greene