Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
FcknGunner1886
/
BukayoSakaLLama3
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
FcknGunner1886
commited on
Apr 26, 2024
Commit
d2b4276
·
verified
·
1 Parent(s):
efedfa7
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
+
x = st.slider('Выберите значение')
4
+
st.write(x, 'в квадрате равно', x * x)
5
+