Imprimer dtype de tableau Numpy
import numpy as np
# Example of 1D array
array = np.linspace(3,40,40)
# print the array data type
print(array.dtype)
Gabriel Juri
import numpy as np
# Example of 1D array
array = np.linspace(3,40,40)
# print the array data type
print(array.dtype)