반응형 streamlist button1 [Python] [Streamlit 사용법] 3. button Streamlit Button 기본적인 사용법 import streamlit as st st.title("Streamlit Test") input_user_name = st.text_input(label="User Name", value="default value") if st.button("Confirm"): con = st.container() con.caption("Result") con.write(f"Hello~ {str(input_user_name)}") st.button() 은 True, False 를 리턴합니다. btn_clicked = st.button("Confirm") st.write(btn_clicked) 클릭하기 전(페이지 로딩)에는 False 를 찍고, 버튼을 클릭하면 True 를.. 2022. 2. 22. 이전 1 다음 728x90 반응형