コード例 #1
0
from Person import Person
from Student import Student
from Teacher import Teacher
from Doctor import Doctor

s=Student('may')
s.SayMyWork()
t=Teacher('tom')
t.SayMyWork()
d=Doctor('tomas')
d.SayMyWork()