Answer:
D) supplies.remove("calculator")
Step-by-step explanation:
Our array's name is "supplies". By starting the line with "supplies", we've defined that this is the subject we wish to edit.
By following it up with .remove, we've told Python that we no longer want to use whatever comes next in our array.
Finally, we use parentheses to define what we wish to remove from out array, which the string provided is ("calculator").