Python numpy asfarray function Пример скалярного массива типа плавания
# welcome to softhunt.net
# Python program explaining
# numpy.asfarray() function
import numpy as np
my_scalar = 50
print ("Input scalar : ", my_scalar)
out_arr = np.asfarray(my_scalar, dtype ='float')
print ("output float type array from input scalar : ", out_arr)
Outrageous Ostrich