Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

myrebuilder1.py 151B

12345678910111213
  1. class A:
  2. def a(self):
  3. return "a"
  4. class B(A):
  5. def b(self):
  6. return "b"
  7. class Inherit(A):
  8. def a(self):
  9. return "c"