4

代码:

class MyClass:
    def __init__(self, aa  ):
        print('aa='+str(aa)+' of type '+str(type(aa)))
        self.aa = aa,
        print('self.aa='+str(self.aa)+' of type '+str(type(self.aa)))

DEBUG = MyClass(aa = 'DEBUG')

输出:

aa=DEBUG of type <type 'str'>
self.aa=('DEBUG',) of type <type 'tuple'>

为什么self.aa变成元组而不是字符串?

4

1 回答 1

20

因为这里有逗号:

self.aa = aa,

这是包含一个元素的元组的语法

于 2012-08-19T15:14:27.567 回答