Here, I have the list test_list=[1,2,3,0,5].
I want to change the list which contains empty values, like [1,2,3, ,5]
All the way I found is to add None or np.nan or just ''.
But all those values are not working at my case, cause I just need to leave the place empty. how can I create it? The reason I need it is to put those values into scipy's interpolation.
None?[1, 2, 3, ,5]?