helloworld / app.py
LIANGUTM's picture
Create app.py
672661d verified
raw
history blame contribute delete
136 Bytes
import streamlit as st
name = st.text_input("请输入你的名字:")
if st.button("打招呼"):
st.write(f"你好,{name}!")