Eunchan Lee commited on
Commit
37fc8cc
1 Parent(s): 52d348f
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ Created on Fri Nov 26 16:16:37 2021
4
+
5
+ @author: PC
6
+ """
7
+
8
+ import streamlit as st
9
+
10
+ x = st.slider('Select a value')
11
+ st.write(x, 'squared is', x * x)