What does the program print out as a result of the given snippet of code?

supplies = ["pencil", "notebook", "backpack", "calculator", "pen"]
print(len(supplies))
5
8
[‘backpack’, ‘calculator’, ‘notebook’, ‘pen’, ‘pencil’]
[‘pencil’, ‘notebook’, ‘backpack’, ‘calculator’, ‘pen’]

Respuesta :

Answer:

5

Explanation:

well the function len gives the length of the list

so the length of supplies is

5

Answer:

a

Explanation:

edge