Python Numpy Asfarray Function Function Contoh Scalar to Float Type Array

# 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