FcknGunner1886 commited on
Commit
d2b4276
1 Parent(s): efedfa7

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+ x = st.slider('Выберите значение')
4
+ st.write(x, 'в квадрате равно', x * x)
5
+