# 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)
# welcome to softhunt.net
# Python program explaining
# numpy.asscalar() function
import numpy as np
in_list = [34]
# changing the list to size 1 array
arr = np.array(in_list)
print ("Input array from list : ", arr)
# changing the array to scalar
scalar = np.asscalar(arr)
print ("output scalar from input list : ", scalar)