Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
ck46
/
qg-qa
like
9
Runtime error
App
Files
Files
Community
ck46
commited on
Dec 14, 2021
Commit
8562f6b
•
1 Parent(s):
c2b0c51
Add application file
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
import streamlit as st
2
+
3
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)
5
+
6
+