speech-to-text / app.py
Airtimefrog's picture
Create app.py
429d829
raw history blame
No virus
101 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)