def main(): """ This particular file shows a point oscillating left and right along the x-axis. """ goban = Goban(size=SIZE_, sh_obj=Cli(), adjust_ssize=-8) current_frame_no = 0 while True: for i in range(-(goban.max_domain), goban.max_domain + 1, int(round(D_INTERVAL))): goban.fill('empty') goban.plot_point(i, 0, 'white') current_frame_no += 1 Cli.print_header('+f{}'.format(current_frame_no)) print((str(goban).rstrip())) # pylint: disable=C0325 time.sleep(T_INTERVAL) for i in range(-(goban.max_domain - 1), (goban.max_domain), int(round(D_INTERVAL))): goban.fill('empty') goban.plot_point(-i, 0, 'black') current_frame_no += 1 Cli.print_header('+f{}'.format(current_frame_no)) print((str(goban).rstrip())) # pylint: disable=C0325 time.sleep(T_INTERVAL)
def main(): """ Print welcome message then get pizza size and price and output area and unit price. """ Cli.print_header() print_welcome() while True: diameter = set_diameter(ABBREV) pizza = make_circle(diameter) pizza = _set_area_units(pizza) price = set_price() output_results(pizza, price)