Question: 1. Design a function (IN PYTHON) that creates an image of your choosing using the function that you designed in your solution to Problem 2.
1. Design a function (IN PYTHON) that creates an image of your choosing using the function that you designed in your solution to Problem 2. You may create any image that you like but your function must take at least one parameter. Eventually, you want to create an image similar to this: 
I'm still in CPSC 101 so please explain to me step-by-step how to do it. My major question is about the second sentence of the problem. This part of the problem is nuanced for me because all function needs a parameter name, so why does the question need to include this?
My problem 2's solution:
def make_pixel(size: int, colour: str) -> Image:
return square(size, "solid", colour)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
