bagbreizh commited on
Commit
531db9b
1 Parent(s): 0da866a

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ # -*- coding: utf-8 -*-
3
+ """
4
+ Created on Thu Oct 10 20:13:29 2024
5
+
6
+ @author: legalchain
7
+ """
8
+
9
+ import streamlit as st
10
+
11
+ x = st.slider('Select a value')
12
+ st.write(x, 'squared is', x * x)