# coding:utf8
class Person():
def __init__(self,name):
self.name = u'name'
self._birth = 'birth'
self.__gender = 'gender'
print Person('bob')
输出 <__main__.Person instance at 0x03C6B1E8> 是什么意思
慕UI6588917
相关分类