I’m working on a system for handling my work tasks, and I’ve run into a snag. I’ve got code that produces 3 columns:
times, slots, notes = st.columns([1, 2, 2])
with times:
for time in list(range( 7, 13)) + list(range(1, 5)):
st.write(f'{time}')
with slots:
st.write("slots")
with notes:
st.write( "here are the notes")
This works on my desktop’s screen, but when I try printing the page, they print as rows. Any idea what I’m doing wrong? Thanks!