Spaces:
Sleeping
Sleeping
File size: 183 Bytes
be5e457 | 1 2 3 4 5 6 7 8 9 10 11 | # -*- 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) |