Google News
logo
NumPy - Quiz(MCQ)
What is the syntax for dtype object in NumPy?
A)
numpy_dtype(object, align, copy)
B)
numpy.dtype(object, align, copy, ndmin)
C)
numpy.dtype(object, align, copy)
D)
numpy.dtype(object, align, copy, subok)

Correct Answer : Option (C) :   numpy.dtype(object, align, copy)


Explanation : A dtype object is constructed using the following syntax : numpy.dtype(object, align, copy)

Advertisement