camiller_python / app.py
Charles Miller
Add application file
e20320b
raw
history blame contribute delete
No virus
177 Bytes
# -*- coding: utf-8 -*-
"""
Created on Wed Aug 9 12:44:03 2023
@author: u5390570
"""
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)