I would like to take a number_input for a float list.
Below doesnt work, gives str.
marketVols = st.text_input(“Vols in %”)
collect_vols = lambda x : [int(float(i)) for i in re.split("\D", x) if i != “”]
st.write(collect_vols(marketVols))
changing to st.number_input() also doesnt work…
Looking for manual input, not excel upload