learn-space2 / app.py
nedijf's picture
Update app.py
102d31e
raw
history blame contribute delete
No virus
101 Bytes
import torch
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)