Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
LIANGUTM
/
helloworld
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
LIANGUTM
commited on
Aug 19, 2025
Commit
672661d
·
verified
·
1 Parent(s):
95448cf
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
name = st.text_input("请输入你的名字:")
4
+
if st.button("打招呼"):
5
+
st.write(f"你好,{name}!")