dataviz / app.py
Nicholas Armenta
First time
7bc0e4f
raw
history blame
113 Bytes
#!/usr/bin/env python3
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)