# This program draws rectangular box figures. # This version uses multiple parameters. # Prints a rectangular box filled with dots. def draw_box(width, height): print("*" * width) for line in range(height - 2): print("*", "." * (width - 2), "*", sep="") print("*" * width) def main(): draw_box(10) draw_box(5, 8, 19) main()