LIANGUTM commited on
Commit
672661d
·
verified ·
1 Parent(s): 95448cf

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ name = st.text_input("请输入你的名字:")
4
+ if st.button("打招呼"):
5
+ st.write(f"你好,{name}!")