Answers for "Python NumPy asscalar Function Example 01"

0

Python NumPy asscalar Function Example 01

# welcome to softhunt.net
# Python program explaining
# numpy.asscalar() function

import numpy as np
# creating a array of size 1
in_arr = np.array([ 5 ])

print ("Input array : ", in_arr)

	
out_scalar = np.asscalar(in_arr)
print ("output scalar from input array : ", out_scalar)
Posted by: Guest on April-24-2022

Python Answers by Framework

Browse Popular Code Answers by Language