samuel2424 commited on
Commit
17e4bee
·
1 Parent(s): 3947212

Adding app file

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ Created on Sun Dec 10 21:09:55 2023
5
+
6
+ @author: samuel
7
+ """
8
+ import streamlit as st
9
+
10
+ x = st.slider('Select a value')
11
+ st.write(x, 'squared is', x * x)