Python Numpy Asscalar Function Пример 02

# 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)
Outrageous Ostrich