I try to assign float numbers stored in tuple to the array but in result I got only integers.
print(type(coordinates))
<class 'tuple'>
print(coordinates)
(67.70841587330506, 43.49477297494752)
print(type(a_punkty))
<class 'numpy.ndarray'>
print(a_punkty.shape)
(10, 2)
a_punkty[0] = coordinate
print(a_punkty[0])
[67 43]
but I would like to have [67.71, 43.49]
How to do this, Thanks!