Which printout will result from the snippet of code?supplies = ["pencil", "notebook", "backpack", "pen", "calculator"]print("These are the supplies in the list:\n", supplies)
A
[‘pencil’, ‘notebook’, ‘backpack’, ‘pen’, ‘calculator’]B
These are the supplies in the list: [‘pencil’, ‘notebook’, ‘backpack’, ‘pen’, ‘calculator’]C
These are the supplies in the list: [‘pencil’, ‘notebook’, ‘backpack’, ‘pen’, ‘calculator’]D
These are the supplies in the list:\n [‘pencil’, ‘notebook’, ‘backpack’, ‘pen’, ‘calculator’]