Spaces:
Sleeping
Sleeping
File size: 202 Bytes
531db9b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/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)
|