Summarizing-app / app.py
Eunchan Lee
21-11-26
37fc8cc
raw
history blame
170 Bytes
# -*- 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)