Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
258cc09c24
/
modda
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
188f05d
modda
/
app.py
258cc09c24
Create app.py
19fe07d
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
244 Bytes
import
streamlit
as
st
# عنوان التطبيق
st.title(
"تطبيق Streamlit البسيط"
)
# إدخال من المستخدم
x = st.slider(
'اختر قيمة'
,
0
,
100
)
# عرض النتيجة
st.write(
f'
{x}
مربعها هو
{x * x}
'
)