from jednostka import Jednostka class Lucznik(Jednostka): def __init__(self): super().__init__(60, 10, 3, 3) def __str__(self): return 'L' def wyswietl_stan(self): print('Ɓucznik') super().wyswietl_stan()