My app would involve allowing the user to choose the number of inputs he wishes to enter
For example, at the top, there would be a select box asking the user for the number of inputs, say 1 to 5, I’ll call this n_input.
And then, I would like there to be that number of select boxes to show up. So for example, the user selected “3” in the previous n_input select box, then 3 select boxes would show up which allow the user to input 3 items.
This is not that difficult to accomplish:
for i in range(n_input):
input[i]=st.selectbox("Input # "+str(i),[1,2,3],key=i)
However, I don’t know how to pack them into columns instead of just lining up vertically. The number of variables to unpack ranges from 1 to 7 so this requires some dynamic assignment.
columns[1],columns[2],.....columns[n_words]=st.beta_columns(nwords)
Surely, I could make a big if loop,
if n_input==7:
columns[1],columns[2],...,columns[7]=st.beta_columns(7)
if n_input==6:
columns[1],columns[2],...,columns[6]=st.beta_columns(6)
if n_input==5:
columns[1],columns[2],...,columns[5]=st.beta_columns(5)
....
Is there a better way to do this?