PCA-Bench / app.py
陈亮
Add application file
783a4dd
raw
history blame contribute delete
91 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)