Answers for "convert arrary to int"

1

convert arrary to int

>>> x = np.array([[1.0, 2.3], [1.3, 2.9]])
>>> x
array([[ 1. ,  2.3],
       [ 1.3,  2.9]])
>>> x.astype(int)
array([[1, 2],
       [1, 2]])
Posted by: Guest on October-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language