Answers for "data type array"

1

data type array

import numpy as np

# Example of 1D array 
array = np.linspace(3,40,40)

# print the array data type
print(array.dtype)
Posted by: Guest on April-26-2022
1

is array a data type in javascript

//An array is an object. An object is a data type but an array in of itself is not a data type. The set of types on JavaScript consist of primitive values and objects. Primitive values - Boolean type. Null type. Undefined type. Number type. BigInt type. String type. Symbol type. Objects (collections of properties)//
Posted by: Guest on November-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language