Spaces:
Sleeping
Sleeping
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Created on Thu Oct 10 20:13:29 2024 | |
@author: legalchain | |
""" | |
import streamlit as st | |
x = st.slider('Select a value') | |
st.write(x, 'squared is', x * x) | |