Note that new class inherits the parent class by having it inside its parenthesis as following:
class F14(Jets):
Inside the new class you can start defining it with the initiator method
__init__ class F14(Jets):
def __init__(self):class F14(Jets):
def __init__(self):
self.name = "F14"
self.origin = "USA"