On Wed, 06 Jan 2010 06:53:40 -0800, [email protected] wrote: > I'm looking for a way to make a list of string literals in a class. > > Example: > > class A: > def method(self): > print 'A','BC' > >>>> ExtractLiterals(A) > ['A','BC'] > > Is this possible? Can anyone point me in the right direction?
class A:
def extract_literals(self):
return "A BC".split()
def method(self):
print self.extract_literals()
a = A()
a.extract_literals()
--
Steven
--
http://mail.python.org/mailman/listinfo/python-list
