multiple choice\na deque is a type of collection, but it is not automatically available when you open idle…

multiple choice\na deque is a type of collection, but it is not automatically available when you open idle. what is missing that allows you to use the deque class?\nfrom collections ____ deque\nallow\ninsert\nuse\nimport

multiple choice\na deque is a type of collection, but it is not automatically available when you open idle. what is missing that allows you to use the deque class?\nfrom collections ____ deque\nallow\ninsert\nuse\nimport

Answer

Brief Explanations:

In Python, to use a class from a module (here deque from collections), the correct keyword is import. It allows accessing the functionality defined in the module.

Answer:

D. import