StreamlitDemo / app.py
navagg's picture
Add application file
be5e457
# -*- coding: utf-8 -*-
"""
Created on Sun Jul 30 13:56:51 2023
@author: NAVEEN AGGARWAL
"""
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)