class A (object):
keywords = ('one', 'two', 'three')
class B (A):
keywords = A.keywords + ('four', 'five', 'six')
に変更A.keywords
する方法はあります<thing B derives from>.keywords
かsuper()
? __init__/self
定義でクラス名を繰り返すのは好きではありません。
使用法:
>>> A.keywords
('one', 'two', 'three')
>>> B.keywords
('one', 'two', 'three', 'four', 'five', 'six')