521da01
1 2 3 4 5 6 7
import fuel class Engine(): def __init__(self, name: str, thrust: int, flow_rate: float): self.name = name self.thrust = thrust self.flow_rate = flow_rate