Consider the code snippet named shapes.py. A statement to call the draw_square function from the shapes module, passing an argument of 3 would be _______________. cr = '#' import shapes def draw_square(size): for h in range(size): for w in range(size): print(cr, end='') print() def draw_rect(height, width): for h in range(height): for w in range(width): print(cr, end='') print()
a draw_rect(3)
b draw_square(3.0)
c shapes.draw_square(3)
d The program throws an error