0

我的问题如下:我有一个带有几个方法的类任务窗格。实例化工作正常。现在,当我显示所有实例化对象的列表时,我想为每个对象打印一个成员变量,例如 _tp_nr。

以下代码返回正确的值,但它以奇怪的(?)格式返回。

这是代码:

#import weakref

class Taskpane():
    '''Taskpane class to hold all catalog taskpanes '''

    #'private' variables
    _tp_nr = ''
    _tp_title = ''
    _tp_component_name = ''

    #Static list for class instantiations
    _instances = []

    #Constructor
    def __init__(self, 
                  nr, 
                  title, 
                  component_name):

      self._tp_nr             = nr, 
      self._tp_title          = title, 
      self._tp_component_name = component_name

      #self.__class__._instances.append(weakref.proxy(self))
      self._instances.append(self)

    def __str__(self):
      return str( self._tp_nr )      

    def setTaskpaneId(self, value):
      self._tp_nr = value

    def getTaskpaneId(self):
      return str(self._tp_nr)

    def setTaskpaneTitle(self, value):
      self._tp_title = value

    def getTaskpaneTitle(self):
      return str(self._tp_title)

    def setTaskpaneComponentName(self, value):
      self._tp_component_name = value

    def getTaskpaneComponentName(self):
      return self._tp_component_name  

tp1 = Taskpane( '0', 'Title0', 'Component0' )
tp2 = Taskpane( '1', 'Title1', 'Component1' )

#print Taskpane._instances

#print tp1

for instance in Taskpane._instances:
    print( instance.getTaskpaneId() )

for instance in Taskpane._instances:
    print( instance.getTaskpaneTitle() ) 

结果:

('0',)
('1',)

('Title0',)
('Title1',)

问题是:为什么它会以这种格式返回结果?我只希望看到:

'0'
'1'

('Title0')
('Title1')

使用时:

for instance in Taskpane._instances:
    print( instance._tp_nr )

结果是一样的。

4

3 回答 3

2

您正在使用逗号创建元组:

self._tp_id             = nr, 

逗号是元组的组成部分_tp_id

>>> 1,
(1,)
于 2013-05-17T10:01:06.080 回答
1

在构造函数中删除此字符串末尾的逗号:

self._tp_id             = nr, 
self._tp_title          = title, 

Python 将此类表达式视为具有一个元素的元组

于 2013-05-17T10:01:01.523 回答
0

删除尾随逗号,这会将值转换为元组。

于 2013-05-17T10:01:01.400 回答