Thought Email List: space rocket design and manufacture From: rocket engineer Subject: re: space rocket work Per the recent meeting, I'm rearchitecting the design and launch programs to use the blessings library. Here are the parts of the new construction and launch initialization routines that I have built: ``` # space venture 2 import sys import blessings class RocketShip: def __init__(self, material=sys.stdout): self.material = blessings.Terminal(stream=material) def build(self): self.position(self.space - 1) self.nose() self.body() self.tail_exhaust() def launch(self): for pos in range(0, self.space): ``` I have not completed the entire launch process quite yet. We need to ensure the rocket reaches space, and doesn't get hung up partway there.