How can write in one line one Streamlit

How can write in one line one Streamlit

for x in range(0, 10):
    for y in range(0, 10):
        st.write('%2d' % (predicted[k]), end='')
        k = k + 1
    st.write()

Hey @loctp2003,

Are you trying to write all your text in one column? Have you tried using st.columns? Doc here

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.