2 つのクラス メソッドから文字列を作成しようとしています。しかし、私は
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)