转自:http://www.weidianyuedu.com/content/4414472793001.html
通过对象属性
class website:
def init(self,name,type):
self.name,self.type = name,type
def str(self):
return 'Website name: {self.name}, Website type: {self.type} '.format(self=self)print str(website(‘pythontab.com’, ‘python’))
Website name: pythontab.com, Website type: pythonprint website(‘pythontab.com’, ‘python’)
Website name: pythontab.com, Website type: python