wRuanMing commited on
Commit
42be2d6
1 Parent(s): 78625c3
Files changed (1) hide show
  1. app.py +9 -0
app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # coding=utf-8
3
+ import streamlit as st
4
+
5
+
6
+
7
+ x = st.slider('Select a value')
8
+
9
+ st.write(x, 'squared is', x * x)