我正在尝试从两个类方法形成一个字符串。但是,我得到一个
unsupported operand type(s) for +: 'instancemethod' and 'instancemethod'
以下代码错误:
class Root():
def header(self):
return '''<html>
<body>'''
def footer(self):
return '''</body>
</html>'''
a_root = Root()
a_string = a_root.header + a_root.footer
print(a_string)