Streamlit

Jihoon·2023년 1월 17일
0
post-thumbnail

✅ st.columns, with col:

import streamlit as st

col1, col2, col3 = st.columns(3)

with col1:
	st.header("A cat")

with col2:
	st.header("A dog")

with col3:
	st.header("An owl")

profile
장난감이 데이터인 사람

0개의 댓글