# Write a function that takes a width and a height # and uses a two dimensional loop to create a list of tiles # (draw a grid), starting at tile 1 # # assume given width and height are positive integer def draw_grid(width, height): print("3x3 grid") draw_grid(3, 3) # expected a grid similar to the following grid (don't worry about spaces) # 1 | 2 | 3 | # 4 | 5 | 6 | # 7 | 8 | 9 | print() print("3x5 grid") draw_grid(3, 5) # expected a grid similar to the following grid (don't worry about spaces) # 1 | 2 | 3 | # 4 | 5 | 6 | # 7 | 8 | 9 | # 10 | 11 | 12 | # 13 | 14 | 15 | print() print("5x3 grid") draw_grid(5, 3) # expected a grid similar to the following grid (don't worry about spaces) # 1 | 2 | 3 | 4 | 5 | # 6 | 7 | 8 | 9 | 10 | # 11 | 12 | 13 | 14 | 15 |