Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

multiple choice a deque is a type of collection, but it is not automati…

Question

multiple choice
a 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?
from collections ____ deque
allow
insert
use
import

Explanation:

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