# -*- coding: utf-8 -*- """ Created on Fri Nov 26 16:16:37 2021 @author: PC """ import streamlit as st x = st.slider('Select a value') st.write(x, 'squared is', x * x)